GraphQL reference

AddPhotosInput

Input

Autogenerated 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
      }
    }
  }
}

Fields

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