graphql-engine/docs/graphql/manual/schema/index.rst
2018-12-03 17:42:24 +05:30

32 lines
1005 B
ReStructuredText

Schema
======
.. contents:: Table of contents
:backlinks: none
:depth: 1
:local:
Hasura GraphQL engine automatically generates your GraphQL schema and resolvers based on your tables/views
in Postgres. **You don't need to write a GraphQL schema or resolvers.**
The Hasura console gives you UI tools that speed up your data-modeling 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.
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>
Default field values <default-values/index>
Enum type fields <enums>
Using an existing database <using-existing-database>
Export GraphQL schema <export-graphql-schema>
How schema generation works <how-it-works>