GraphQL reference

UpdatePunchListItemInput

Input

Autogenerated input type of UpdatePunchListItem

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

Example

mutation UpdatePunchListItem(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdatePunchListItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updatePunchListItem(input: $input) {
        punchListItem
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
approverUserIdID
assigneeUserIdID
clientMutationIdStringA unique identifier for the client performing the mutation.
copyAttachments[CopyAttachment!]
createAttachments[CreateAttachment!]
deleteAttachments[DeleteAttachment!]
descriptionString
dueOnString
idID!
locationIdID
mutationMetadataJSON
nowISO8601DateTime
parentPunchListItemIdID
punchListIdID
startOnString
statusString
subscribers[SubmittalSubscriberInput!]
titleString
tradeIdID
updatedAtISO8601DateTime