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

# Load TuringDB graph

> Load existing TuringDB graph

To be able to load TuringDB files into a graph, they have to be saved into the `graphs` subdirectory in the TuringDB directory: `-turing-dir` flag when you run `turingdb` (by default is `$HOME/.turing`).

<Tabs>
  <Tab title="Cypher">
    Load a TuringDB graph:

    ```jsx theme={null}
    LOAD GRAPH mygraph
    ```
  </Tab>

  <Tab title="Python SDK">
    Load a TuringDB graph:

    ```python theme={null}
    client.load_graph("mygraph")
    ```
  </Tab>
</Tabs>
