CreatePunchListItemInput
InputAutogenerated 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
| Field | Type | Description |
|---|---|---|
| approverUserId | ID | — |
| assigneeUserId | ID | — |
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| createdAt | ISO8601DateTime | — |
| description | String | — |
| dueOn | String | — |
| id | ID! | — |
| locationId | ID | — |
| mutationMetadata | JSON | — |
| number | Int | — |
| parentPunchListItemId | ID | — |
| punchListId | ID! | — |
| startOn | String | — |
| status | String | — |
| subscribers | JSON | — |
| title | String | — |
| tradeId | ID | — |
| updatedAt | ISO8601DateTime | — |