GraphQL reference

DeletePhotosPayload

Object

Autogenerated return type of DeletePhotos.

mutation { organization(id: $organizationId) { project(id: $projectId) { deletePhotos } } }

Example

mutation DeletePhotos(
  $organizationId: ID!
  $projectId: ID!
  $input: DeletePhotosInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deletePhotos(input: $input) {
        photos
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
photos[Photo!]!