Studio checksum from name. Default image

This commit is contained in:
WithoutPants
2019-08-21 15:48:36 +10:00
parent 043d073bcf
commit 20662532d8
7 changed files with 22 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
mutation StudioCreate(
$name: String!,
$url: String,
$image: String!) {
$image: String) {
studioCreate(input: { name: $name, url: $url, image: $image }) {
...StudioData

View File

@@ -12,7 +12,7 @@ input StudioCreateInput {
name: String!
url: String
"""This should be base64 encoded"""
image: String!
image: String
}
input StudioUpdateInput {