CreatePhotoInput
InputAutogenerated input type of CreatePhoto
mutation { organization(id: $organizationId) { project(id: $projectId) { createPhoto } } }
Example
mutation CreatePhoto(
$organizationId: ID!
$projectId: ID!
$input: CreatePhotoInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createPhoto(input: $input) {
photo
errors
}
}
}
}