> ## Documentation Index
> Fetch the complete documentation index at: https://docs.learningcommons.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Local files

> Download JSON files to access Knowledge Graph data.

## Overview

Knowledge Graph data can be downloaded as 2 newline-delimited JSONL files with UTF-8 encoding:

* `nodes.jsonl` - Contains Knowledge Graph [entities](/knowledge-graph/understanding-knowledge-graph/core-concepts#entities) (graph nodes)
* `relationships.jsonl` - Contains Knowledge Graph [relationships](/knowledge-graph/understanding-knowledge-graph/core-concepts#relationships) (graph edges)

## Download

You can download all data in the Knowledge Graph using the following methods:

* Direct links - [`nodes.jsonl`](https://cdn.learningcommons.org/knowledge-graph/v1.12.0/exports/nodes.jsonl?ref=docs) ↗ and [`relationships.jsonl`](https://cdn.learningcommons.org/knowledge-graph/v1.12.0/exports/relationships.jsonl?ref=docs) ↗
* [`curl`](https://github.com/curl/curl) ↗ commands

  ```bash For entities theme={null}
  curl -L "https://cdn.learningcommons.org/knowledge-graph/v1.12.0/exports/nodes.jsonl?ref=docs_curl" -o nodes.jsonl
  ```

  ```bash For relationships theme={null}
  curl -L "https://cdn.learningcommons.org/knowledge-graph/v1.12.0/exports/relationships.jsonl?ref=docs_curl" -o relationships.jsonl
  ```

## Related topics

<CardGroup cols={2}>
  <Card title="Core concepts" icon="lightbulb" href="/knowledge-graph/understanding-knowledge-graph/core-concepts">
    Learn how entities, relationships, and UUIDs appear in the JSONL files.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/knowledge-graph/getting-started/quickstart">
    Compare local files with other ways to get started with Knowledge Graph.
  </Card>
</CardGroup>
