DeletePhotoPayload
ObjectAutogenerated return type of DeletePhoto.
mutation { organization(id: $organizationId) { project(id: $projectId) { deletePhoto } } }
Example
mutation DeletePhoto(
$organizationId: ID!
$projectId: ID!
$input: DeletePhotoInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deletePhoto(input: $input) {
photo
errors
}
}
}
}