OBJECT

ContentNode

Description

A node in a help topic document tree.

link GraphQL Schema definition

  • type ContentNode {
  • # Markup tag name.
  • tag: String!
  • # Text content of this node.
  • text: String!
  • # Attributes of this node.
  • attributes: [ContentNodeAttribute!]!
  • # Index of this node in the document tree.
  • index: Int
  • # Index of the parent of this node.
  • parentIndex: Int
  • }