graphql-engine/docs/graphql/manual/getting-started/first-graphql-query.rst
2020-03-12 01:12:36 +05:30

62 lines
1.3 KiB
ReStructuredText

.. meta::
:description: Make a first GraphQL query with Hasura
:keywords: hasura, docs, start, query, graphql
.. _first_graphql_query:
Making your first GraphQL query
===============================
.. contents:: Table of contents
:backlinks: none
:depth: 1
:local:
Let's create a sample table and query data from it using the Hasura console, a UI tool meant for doing exactly this:
Create a table
--------------
Head to the Hasura console, navigate to ``Data -> Create table`` and create a sample table called ``profile`` with
the following columns:
.. code-block:: sql
profile (
id INT PRIMARY KEY,
name TEXT
)
.. thumbnail:: ../../../img/graphql/manual/getting-started/create-profile-table.png
:alt: Create a table
Now, insert some sample data into the table using the ``Insert Row`` tab of the ``profile`` table.
Try out a query
---------------
Head to the ``GraphiQL`` tab in the console and try running the following query:
.. code-block:: graphql
query {
profile {
id
name
}
}
You'll see that you get all the inserted data!
.. thumbnail:: ../../../img/graphql/manual/getting-started/profile-query.png
:alt: Try out a query
Next steps
----------
Read more about:
- :ref:`Building your schema <schema>`
- :ref:`Queries <queries>`