diff --git a/dgraph/quickstart.mdx b/dgraph/quickstart.mdx index 55d20f21..ef8a6f11 100644 --- a/dgraph/quickstart.mdx +++ b/dgraph/quickstart.mdx @@ -20,82 +20,12 @@ This guide helps you to understand how to: ## Run Dgraph and connect the Ratel web UI -The easiest way to get Dgraph up and running in the cloud is using -[Dgraph on Hypermode](https://hypermode.com/login). If you prefer a local -development experience with Dgraph we recommend using the official Dgraph Docker -image. Both options are described below. +The recommended way to get started with Dgraph for local development is by using the official Dgraph Docker image. In this section we'll create a new graph, then we'll connect our new graph to [Ratel](./glossary#ratel), the web-based UI for Dgraph. - - - - - - Open [`hypermode.com/login`](https://hypermode.com/login) in your web browser and sign - in to Hypermode to create your account. - - After signing in you'll be prompted to choose a name for your workspace. - - ![Create your Hypermode workspace](/images/dgraph/quickstart/create-workspace.png) - - Enter a name for your workspace and then select **Create workspace**. - - - - - - After creating your Hypermode workspace you'll be prompted to create your first - graph. - - ![Create your first Hypermode graph](/images/dgraph/quickstart/create-graph-2.png) - - Enter a name for your graph and choose the hosting location, then select - **Create graph**. - - - - - -Once your graph is created you'll see the graph details including its status, -connection string, and API key. - -![Graph detail view](/images/dgraph/quickstart/graph-details.png) - -We'll use the Dgraph connection string and the API key to connect to our graph -via Dgraph clients such as Ratel or language SDKs. - -Click on the copy icon next to the connection string to copy the Dgraph -connection string. - - - - - -Ratel is a web-based Dgraph client for interacting with your graph. We'll use -Ratel to execute DQL queries and update the graph schema. - -Navigate to [ratel.hypermode.com](https://ratel.hypermode.com) and paste the -Dgraph connection string you copied in the previous step into the "Dgraph Conn -String" text box in Ratel then select **Connect** to verify the connection and -then select **Continue** to access the Ratel console. - -![Connecting to Ratel](/images/dgraph/quickstart/ratel-connection-string.png) - -The Ratel console is where we can execute DQL queries and mutations and view the -results of these operations, including visualizing graph data. - -![Ratel overview](/images/dgraph/quickstart/ratel-overview.png) - -Now we're ready to add data to our graph. - - - - - - - + The [`dgraph/standalone`](https://hub.docker.com/r/dgraph/standalone) Docker image has everything needed to run Dgraph locally. @@ -139,9 +69,6 @@ Now we're ready to add data to our graph. - - - ## Add data to the graph with a mutation Graph databases like Dgraph use a data model called the **property graph**,