AddPhotosInput
InputAutogenerated input type of AddPhotos
mutation { organization(id: $organizationId) { project(id: $projectId) { addPhotos } } }
Example
mutation AddPhotos(
$organizationId: ID!
$projectId: ID!
$input: AddPhotosInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
addPhotos(input: $input) {
photoAlbum
errors
}
}
}
}