GraphQL reference

UpdatePunchListItemPayload

Object

Autogenerated return 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
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
punchListItemPunchListItem