GraphQL reference

CopyPhotosInput

Input

Autogenerated input type of CopyPhotos

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

Example

mutation CopyPhotos(
  $organizationId: ID!
  $projectId: ID!
  $input: CopyPhotosInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      copyPhotos(input: $input) {
        photoAlbum
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
albumIdID!
clientMutationIdStringA unique identifier for the client performing the mutation.
mutationMetadataJSON
nowISO8601DateTime
photoIds[CopyPhotoInput!]!