Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@magidoc/rollup-plugin-fetch-gql-schema

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@magidoc/rollup-plugin-fetch-gql-schema - npm Package Compare versions

Comparing version 0.9.2 to 0.9.3

9

build/schema/query.js

@@ -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 @@ });

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc