OBJECT
KnowledgeBaseArticle
Description
A knowledge base article.
link GraphQL Schema definition
- type KnowledgeBaseArticle {
- # Article number of the knowledge base article.
- : String!
- # A flattened list of nodes representing the cause section of the knowledge base
- # article.
- : [ContentNode!]!
- # Summary of the knowledge base article.
- : String!
- # A flattened list of nodes representing the environment section of the knowledge
- # base article.
- : [ContentNode!]!
- # ID of the knowledge base article.
- : String!
- # A flattened list of nodes representing the notes section of the knowledge base
- # article.
- : [ContentNode!]!
- # A flattened list of nodes representing the resolution section of the knowledge
- # base article.
- : [ContentNode!]!
- # A flattened list of nodes representing the summary section of the knowledge base
- # article.
- : [ContentNode!]!
- # Title of the knowledge base article.
- : String!
- }