GraphQL reference

MovePhotosInput

Input

Autogenerated input type of MovePhotos

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

Example

mutation MovePhotos(
  $organizationId: ID!
  $projectId: ID!
  $input: MovePhotosInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      movePhotos(input: $input) {
        photoAlbum
        errors
      }
    }
  }
}

Fields

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