A flake8 and Pylama plugin that checks the all the static gql calls given a GraphQL schema.
It will not check anything else about the gql calls. Merely that the GraphQL syntax is correct and it validates against the provided schema.
This package adds 3 new flake8 warnings
GQL100
: The gql query is doesn't match GraphQL syntaxGQL101
: The gql query have valid syntax but doesn't validate against provided schema
You will want to set the gql-introspection-schema
option to a
file with the json introspection of the schema.