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

@@ -15,7 +15,7 @@ mutation PerformerCreate(
$twitter: String,
$instagram: String,
$favorite: Boolean,
$image: String!) {
$image: String) {
performerCreate(input: {
name: $name,

View File

@@ -41,7 +41,7 @@ input PerformerCreateInput {
instagram: String
favorite: Boolean
"""This should be base64 encoded"""
image: String!
image: String
}
input PerformerUpdateInput {