update remote schema boilerplate readme (#2884)

This commit is contained in:
Tirumarai Selvan 2019-09-16 11:02:08 +05:30 committed by Shahidh K Muhammed
parent 7915441a69
commit 17b8b6e2de

View File

@ -1,14 +1,23 @@
# GraphQL Server Boilerplates # Remote Schema (GraphQL Server) Boilerplates
Hasura GraphQL Engine can combine schemas from multiple remote GraphQL servers Hasura GraphQL Engine can combine schemas from multiple remote GraphQL servers
and expose them at a single endpoint. You can write these GraphQL servers in any and expose them at a single endpoint. You can write these GraphQL servers in any
language and Hasura takes care of stitching together the schema from these language and Hasura takes care of stitching together the schema from these
servers ([read more](../../../remote-schemas.md)). servers ([read more](../../../remote-schemas.md)).
This directory contains boilerplates for writing GraphQL servers using various This directory contains boilerplates for GraphQL servers using various
languages and frameworks. languages, frameworks and deployment runtimes:
- [Docs on Remote Schemas](https://docs.hasura.io/1.0/graphql/manual/remote-schemas/index.html) - nodejs: [aws](aws-lambda/nodejs), [azure](azure-functions/nodejs), [google](google-cloud-functions/nodejs)
- python: [zeit](zeit-now/python)
Typical use-cases:
- Wrap existing REST endpoints: [rest-wrapper](rest-wrapper/)
## Docs
[Remote Schema documentation](https://docs.hasura.io/1.0/graphql/manual/remote-schemas/index.html)
## Architecture ## Architecture