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

@@ -2235,7 +2235,7 @@ input StudioCreateInput {
name: String!
url: String
"""This should be base64 encoded"""
image: String!
image: String
}
input StudioUpdateInput {
@@ -8699,7 +8699,7 @@ func (ec *executionContext) unmarshalInputStudioCreateInput(ctx context.Context,
}
case "image":
var err error
it.Image, err = ec.unmarshalNString2string(ctx, v)
it.Image, err = ec.unmarshalOString2string(ctx, v)
if err != nil {
return it, err
}