PageContent
This is the actual content of the page
type PageContent {
contentAsHtml: String
contentAsString: String!
demandHqId: ID!
excerpt(
numberOfCharacters: Int
): String
pageId: ID!
updatedAt: String
updatedBy: ID!
}
Fields
PageContent.contentAsHtml ● String scalar
Get the markdown content of the page as parsed HTML. Do not use this field without purifying or sanitizing the HTML in your webapp.
PageContent.contentAsString ● String! non-null scalar
PageContent.demandHqId ● ID! non-null scalar
PageContent.excerpt ● String scalar
Get an excerpt of the page content.
PageContent.excerpt.numberOfCharacters●IntscalarThe number of characters to return, defaults to 200.
PageContent.pageId ● ID! non-null scalar
PageContent.updatedAt ● String scalar
PageContent.updatedBy ● ID! non-null scalar
Returned by
upsertPageContent mutation
Member of
Page object