Performer checksum from name. Default image

This commit is contained in:
WithoutPants
2019-08-21 12:51:30 +10:00
parent 32a4f34c7c
commit 996fd9c70a
8 changed files with 30 additions and 14 deletions

View File

@@ -2059,7 +2059,7 @@ input PerformerCreateInput {
instagram: String
favorite: Boolean
"""This should be base64 encoded"""
image: String!
image: String
}
input PerformerUpdateInput {
@@ -8255,7 +8255,7 @@ func (ec *executionContext) unmarshalInputPerformerCreateInput(ctx context.Conte
}
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
}