GraphQL reference

CreatePunchListItemInput

Input

Autogenerated input type of CreatePunchListItem

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

Example

mutation CreatePunchListItem(
  $organizationId: ID!
  $projectId: ID!
  $input: CreatePunchListItemInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createPunchListItem(input: $input) {
        punchListItem
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
approverUserIdID
assigneeUserIdID
clientMutationIdStringA unique identifier for the client performing the mutation.
createdAtISO8601DateTime
descriptionString
dueOnString
idID!
locationIdID
mutationMetadataJSON
numberInt
parentPunchListItemIdID
punchListIdID!
startOnString
statusString
subscribersJSON
titleString
tradeIdID
updatedAtISO8601DateTime