Queries
Get the details of a checklist activity
This request allows us to fetch the details of a checklist activity.
- graphql
01query GetChecklist($id: String!) {02 checklist(id: $id) {03 checklist {04 title05 items06 }07 }08}
An example id
for a checklist is "9rjfb9qE4pEY".
- json
01{02 "id": "{{CHECKLIST_ID}}"03}
The id of the checklist can be found in the object.id
field of an activity.
- json
01{02 "activity": {03 "id": "{{ACTIVITY_ID}}",04 "object": {05 "id": "{{CHECKLIST_ID}}",06 "type": "checklist"07 },08 ...09 }10}