OBJECT

node

A tree node

link GraphQL Schema definition

  • type node {
  • # The node id
  • id: String!
  • # The node parent id
  • parentId: String
  • # The keys for content
  • keys: [String!]!
  • # The content as itemGroups
  • #
  • # Arguments
  • # includeContext: If true, adds scope and nextToken information
  • # to each token
  • itemGroups(includeContext: Boolean): [ItemGroup!]!
  • # The node children ids
  • childIds: [String!]!
  • }