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
  • itemGroups: [ItemGroup!]!
  • # The node children ids
  • childIds: [String!]!
  • }