GraphSearch Playground

Test RAG over your own documents before writing a line of client code. Every action shows the exact GraphQL it runs — copy it straight into your app.

1 · Add your documents

Paste text or drop .md / .txt files. They're chunked, embedded, and indexed instantly.

…or click / drop files here
Show the GraphQL
mutation Upload($content: String!, $title: String) {
  uploadDocument(content: $content, title: $title) {
    id
    title
    chunkCount
  }
}

2 · Ask questions

Answers are grounded in your documents, with ranked sources.

Show the GraphQL
query Ask($question: String!) {
  answer(question: $question) {
    text
    sources { documentTitle text score }
  }
}