Theme
A theme for a Knowledge Base that is provided out of the box.
To fetch all themes:
query Themes {
themes {
nodes {
createdAt
id
name
description
screenshotUrl
updatedAt
}
}
}
type Theme implements Node, Timestamped {
createdAt: DateTime!
description: String
id: ID!
name: String
screenshotUrl: String
updatedAt: DateTime!
}
Fields
Theme.createdAt ● DateTime! non-null scalar common
The date and time that the object was created.
Theme.description ● String scalar common
A description of the theme.
Theme.id ● ID! non-null scalar common
Theme.name ● String scalar common
The name of the theme.
Theme.screenshotUrl ● String scalar common
The URL of a sample screenshot image for the theme.
Theme.updatedAt ● DateTime! non-null scalar common
The date and time that the object was last updated.
Interfaces
Node interface common
An object with an ID.
Timestamped interface common
An object with timestamp fields for when it was created and last updated.
Member of
KnowledgeBase object ● ThemeConnection object ● ThemeEdge object