AssistantConversationExport
type AssistantConversationExport {
markdown: String!
html(
withoutStyles: Boolean
onlyBodyInnerHtml: Boolean
includeOverviewPage: Boolean
): String!
emailHtml: String
reportElements: AssistantConversationExportReportElements!
}
Fields
AssistantConversationExport.markdown ● String! non-null scalar graph-ql-types
The markdown format for the conversation export content. @exposed
AssistantConversationExport.html ● String! non-null scalar graph-ql-types
The html format for the conversation export content, with injected styles. @exposed
AssistantConversationExport.html.withoutStyles ● Boolean scalar graph-ql-types
Whether to exclude report CSS stylesheet from the html export.
AssistantConversationExport.html.onlyBodyInnerHtml ● Boolean scalar graph-ql-types
Whether to extract only the body inner html from the html export. (without <html>, <head>, <body> tags)
AssistantConversationExport.html.includeOverviewPage ● Boolean scalar graph-ql-types
Whether to include the overview page in the html export.
AssistantConversationExport.emailHtml ● String scalar graph-ql-types
Email-friendly HTML with table-based layout and inline styles. Outputs content in <table><tr><td> format with inline styles optimized for email clients. Designed for email clients and Thymeleaf templates. Returns only content (no full document). @exposed
AssistantConversationExport.reportElements ● AssistantConversationExportReportElements! non-null object graph-ql-types
Metadata of the report export. (header, footer, cssContent) @exposed
Member Of
AssistantConversation object