CreateUnattachedPhotoPayload
ObjectAutogenerated return type of CreateUnattachedPhoto.
mutation { organization(id: $organizationId) { project(id: $projectId) { createUnattachedPhoto } } }
Example
mutation CreateUnattachedPhoto(
$organizationId: ID!
$projectId: ID!
$input: CreateUnattachedPhotoInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createUnattachedPhoto(input: $input) {
photo
errors
}
}
}
}