> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# jonnaWikiSources

GraphQL QUERY

List registered external document references for the current scope. Sources are pointers (no document content); pages cite them via `sourceIds`.

Reference: https://docs.revvue.ai/api-reference/knowledge-hub/queries/jonna-wiki-sources

## GraphQL Schema

```graphql
query ExampleQuery($scope: WikiScopeInputGql, $locationId: String, $groupIds: [String!], $refType: String, $refId: String, $createdAfter: DateTime, $createdBefore: DateTime, $limit: Int!, $offset: Int!, $unprocessedOnly: Boolean!) {
  jonnaWikiSources(scope: $scope, locationId: $locationId, groupIds: $groupIds, refType: $refType, refId: $refId, createdAfter: $createdAfter, createdBefore: $createdBefore, limit: $limit, offset: $offset, unprocessedOnly: $unprocessedOnly) {
    id
    tenantId
    scopeType
    scopeId
    namespace
    refType
    refId
    title
    uri
    frontmatter
  }
}
```

## Variables

```json
{
  "scope": null,
  "locationId": null,
  "groupIds": null,
  "refType": null,
  "refId": null,
  "createdAfter": null,
  "createdBefore": null,
  "limit": 50,
  "offset": 0,
  "unprocessedOnly": false
}
```