AddPhotosPayload
ObjectAutogenerated return 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
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| constructableUrl | String | — |
| errors | [String!]! | — |
| photoAlbum | PhotoAlbum | — |