For the complete documentation index, see llms.txt. This page is also available as Markdown.

API Documentation

Below Graph QL API would help applications integrate with external applications.

Request Structure

mutation QueryWorkBook($queryWorkBookId: String!, $question: String!) {
  queryWorkBook(id: $queryWorkBookId, question: $question) {
    id
    message
    documentBookId
    creatorId
    createdAt
    updatedAt
    creator {
      id
    }
  }
}

Response Structure

Sample Response

Last updated