Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 772 Bytes

getting-started-with-the-graphql-api.md

File metadata and controls

31 lines (18 loc) · 772 Bytes

Getting started with the GraphQL API

Notes

Development

  • The project now supports GraphQL.
  • The GraphQL endpoint URL is /graphql.
  • The GraphiQL (an IDE for our API) URL is /graphiql, which can only be accessed during development. This will be deprecated soon.
  • The GraphQL Playground can be accessed on the browser via /graphql/playground

Production (Heroku)

Limitations

  • Almost all of the fields in the GraphQL API are accessible only if you're logged in.
  • Authentication (login) is not currently supported in GraphQL. You must login via the REST API first.
  • A static GraphQL API doc is not yet available. Stay tuned for details.