@magidoc/rollup-plugin-fetch-gql-schema
Advanced tools
Comparing version 0.9.2 to 0.9.3
@@ -8,10 +8,3 @@ import { getIntrospectionQuery } from 'graphql'; | ||
operationName: 'IntrospectionQuery', | ||
query: parameters.query ?? | ||
getIntrospectionQuery({ | ||
descriptions: true, | ||
directiveIsRepeatable: true, | ||
inputValueDeprecation: true, | ||
schemaDescription: true, | ||
specifiedByUrl: true, | ||
}).trim(), | ||
query: parameters.query ?? getIntrospectionQuery().trim(), | ||
variables: null, | ||
@@ -18,0 +11,0 @@ }); |
@@ -5,3 +5,3 @@ { | ||
"private": false, | ||
"version": "0.9.2", | ||
"version": "0.9.3", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "license": "MIT", |
@@ -28,11 +28,3 @@ import { | ||
operationName: 'IntrospectionQuery', | ||
query: | ||
parameters.query ?? | ||
getIntrospectionQuery({ | ||
descriptions: true, | ||
directiveIsRepeatable: true, | ||
inputValueDeprecation: true, | ||
schemaDescription: true, | ||
specifiedByUrl: true, | ||
}).trim(), | ||
query: parameters.query ?? getIntrospectionQuery().trim(), | ||
variables: null, | ||
@@ -39,0 +31,0 @@ }) |
@@ -19,9 +19,3 @@ import queryGraphQLSchema from '../../src/schema/query' | ||
describe('using default parameters', () => { | ||
const expectedRequest = getIntrospectionQuery({ | ||
descriptions: true, | ||
directiveIsRepeatable: true, | ||
inputValueDeprecation: true, | ||
schemaDescription: true, | ||
specifiedByUrl: true, | ||
}) | ||
const expectedRequest = getIntrospectionQuery() | ||
@@ -28,0 +22,0 @@ describe('request succeeds', () => { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15730
373