graphql-language-service-server
Version:
Server process backing the GraphQL Language Service
35 lines (34 loc) • 1.01 kB
YAML
projects:
testWithSchema:
schema:
- __schema__/StarWarsSchema.graphql
- 'directive @customDirective on FRAGMENT_SPREAD'
testWithGlobSchema:
schema:
- __schema__/*.graphql
- 'directive @customDirective on FRAGMENT_SPREAD'
testWithEndpoint:
schema: https://example.com/graphql
testWithEndpointAndSchema:
schema:
- __schema__/StarWarsSchema.graphql
- https://example.com/graphql
testWithoutSchema:
schema: ''
testWithCustomDirectives:
schema:
- __schema__/StarWarsSchema.graphql
- 'directive @customDirective on FIELD'
testSingularIncludesGlob:
schema: __schema__/StarWarsSchema.graphql
documents: __queries__/*.graphql
testMultipleIncludes:
schema: __schema__/StarWarsSchema.graphql
documents:
- __queries__/*.graphql
- __fragments__/*.graphql
testNoIncludes:
schema: __schema__/StarWarsSchema.graphql
testBadIncludes:
schema: __schema__/StarWarsSchema.graphql
documents: nope.nopeql