OBJECT

KnowledgeBaseArticle

Description

A knowledge base article.

link GraphQL Schema definition

  • type KnowledgeBaseArticle {
  • # ID of the knowledge base article.
  • id: String!
  • # Article number of the knowledge base article.
  • articleNumber: String!
  • # Title of the knowledge base article.
  • title: String!
  • # Summary of the knowledge base article.
  • description: String!
  • # A flattened list of nodes representing the cause section of the knowledge base
  • # article.
  • cause: [ContentNode!]!
  • # A flattened list of nodes representing the environment section of the knowledge
  • # base article.
  • environment: [ContentNode!]!
  • # A flattened list of nodes representing the notes section of the knowledge base
  • # article.
  • notes: [ContentNode!]!
  • # A flattened list of nodes representing the resolution section of the knowledge
  • # base article.
  • resolution: [ContentNode!]!
  • # A flattened list of nodes representing the summary section of the knowledge base
  • # article.
  • summary: [ContentNode!]!
  • }

link Require by