GraphQL reference

UpdatePunchListItemSubscribersInput

Input

Autogenerated input type of UpdatePunchListItemSubscribers

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

Example

mutation UpdatePunchListItemSubscribers(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdatePunchListItemSubscribersInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updatePunchListItemSubscribers(input: $input) {
        punchListItems
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
mutationMetadataJSON
newSubscriberIds[PunchListItemNewSubscriberInput!]
nowISO8601DateTime
punchListItemIds[ID!]
subscriberUserIds[ID!]