This package contains schema of the Stateful GraphQL API.
Generate
The process of generating Go models from the schema works as follows:
Download schema represented as an Introspection Query result: go run ./cmd/gqltool/main.go --api-url=[YOUR STAGING URL] > ./internal/client/graphql/schema/introspection_query_result.json
Convert it to GraphQL Schema Definition Language using graphql-js:
$ pushd ./internal/client/graphql/schema
$ npm run convert
$ popd