Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
SearchQueryResult
A single query result
type SearchQueryResult {
author: SearchQueryResultAuthor
query: String!
tableIds: [String!]!
}
Fields
SearchQueryResult.author ● SearchQueryResultAuthor object ai
Query author information
SearchQueryResult.query ● String! non-null scalar general
Query matching provided question
SearchQueryResult.tableIds ● [String!]! non-null scalar general
Table IDs used by this query
Example
{
"author": {
"email": "john.doe@example.com",
"name": "John Doe"
},
"query": "What is MMR?",
"tableIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
]
}
Member Of
SearchQueriesOutputobject