Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
snippet:read
query getSnippets($first: Int = 50, $after: String) { snippets(first: $first, after: $after) { edges { node { id name text markdown path } } pageInfo { hasNextPage endCursor } } }
{ "first": 50 }
query getSnippet($snippetId: ID!) { snippet(snippetId: $snippetId) { id name text markdown path } }
{ "snippetId": "sn_01HXXXXXXXXXXXXXXXXXXXXXXX" }
Was this page helpful?