> ## 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.

# Create Graph

> Create a TuringDB graph

<Tabs>
  <Tab title="Cypher">
    ```jsx theme={null}
    // Create a new change on the graph
    CREATE GRAPH my_graph
    ```
  </Tab>

  <Tab title="Python SDK">
    ```python theme={null}
    from turingdb import TuringDB

    # Create TuringDB client
    # set host parameter to the URL (as string) on which TuringDB is running,
    # default "http://localhost:6666"
    client = TuringDB(host="http://localhost:6666")

    # Create a new graph called my_graph
    client.create_graph("mygraph")

    # Set working graph
    client.set_graph("mygraph")
    ```
  </Tab>
</Tabs>
