graphql-engine/docs/graphql/manual/schema/index.rst

35 lines
1.1 KiB
ReStructuredText
Raw Normal View History

Schema
======
.. contents:: Table of contents
:backlinks: none
:depth: 1
:local:
2019-09-11 10:17:14 +03:00
The Hasura GraphQL engine automatically generates your GraphQL schema and resolvers based on your tables/views
2019-01-04 20:25:48 +03:00
in Postgres. **You don't need to write a GraphQL schema or resolvers.** See
:doc:`How Hasura GraphQL engine works <../how-it-works/index>` for more details.
2019-05-17 15:03:35 +03:00
The Hasura console gives you UI tools that speed up your data-modelling process, or working with your existing database.
The console also automatically generates migrations or metadata files that you can edit directly and check into your
version control.
2019-09-11 10:17:14 +03:00
The Hasura GraphQL engine lets you do anything you would usually do with Postgres by giving you GraphQL over native
Postgres constructs.
**See:**
.. toctree::
:maxdepth: 1
Basics <basics>
Relationships <relationships/index>
Customise with views <views>
2019-12-26 15:05:37 +03:00
Customise with SQL functions <custom-functions>
Default field values <default-values/index>
Enum type fields <enums>
computed-fields
2019-12-26 15:05:37 +03:00
custom-field-names
Using an existing database <using-existing-database>
Export GraphQL schema <export-graphql-schema>