Checklists

Use the myChecklistItems to get the list of items registered in the createMyChecklistItem mutation.

Available Fields

Field

Type

Description

id

ID

Unique Id of the checklist item

header

String

Title of the checklist item

tags

String

Predefined tag to be added.

text

String

Description of the checklist item

updatedAt

DateTime

Date and time when the checklist item was updated.

createdAt

DateTime

Date and time when the checklist item was created.

Example

{
  myChecklistItems{
    edges{
      node{
        id
        tags
        text
        updatedAt
        createdAt
      }
    }
  }
}

Last updated