New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-inspector/loaders

Package Overview
Dependencies
Maintainers
2
Versions
427
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-inspector/loaders - npm Package Compare versions

Comparing version 0.0.0-canary.da4bdcc to 0.0.0-canary.e88eb08

68

index.cjs.js

@@ -6,2 +6,3 @@ 'use strict';

const load = require('@graphql-tools/load');
const graphql = require('graphql');

@@ -25,7 +26,56 @@ class LoadersRegistry {

}
loadSchema(pointer, options = {}) {
return load.loadSchema(pointer, Object.assign({ loaders: this.loaders }, options));
loadSchema(pointer, options = {}, enableApolloFederation, enableAWS) {
return enrichError(load.loadSchema(pointer, Object.assign(Object.assign(Object.assign({ loaders: this.loaders }, options), (enableApolloFederation
? {
schemas: [
graphql.buildSchema(/* GraphQL */ `
scalar _FieldSet
directive @external on FIELD_DEFINITION
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
directive @provides(fields: _FieldSet!) on FIELD_DEFINITION
directive @key(fields: _FieldSet!) on OBJECT | INTERFACE
directive @extends on OBJECT | INTERFACE
`),
],
}
: {})), (enableAWS
? {
schemas: [
graphql.buildSchema(/* GraphQL */ `
scalar AWSDate
scalar AWSTime
scalar AWSDateTime
scalar AWSTimestamp
scalar AWSEmail
scalar AWSJSON
scalar AWSURL
scalar AWSPhone
scalar AWSIPAddress
scalar BigInt
scalar Double
directive @aws_subscribe(
mutations: [String!]!
) on FIELD_DEFINITION
directive @deprecated(
reason: String
) on FIELD_DEFINITION | INPUT_FIELD_DEFINITION | ENUM | ENUM_VALUE
directive @aws_auth(
cognito_groups: [String!]!
) on FIELD_DEFINITION
directive @aws_api_key on FIELD_DEFINITION | OBJECT
directive @aws_iam on FIELD_DEFINITION | OBJECT
directive @aws_oidc on FIELD_DEFINITION | OBJECT
directive @aws_cognito_user_pools(
cognito_groups: [String!]
) on FIELD_DEFINITION | OBJECT
`),
],
}
: {}))));
}
loadDocuments(pointer, options = {}) {
return load.loadDocuments(pointer, Object.assign({ loaders: this.loaders }, options));
return enrichError(load.loadDocuments(pointer, Object.assign({ loaders: this.loaders }, options)));
}

@@ -42,2 +92,14 @@ }

}
/**
* Adds `(source: <file-path>)` suffix to error message if source is available
*/
function enrichError(looksPromising) {
return looksPromising.catch((error) => {
var _a, _b;
if ((_a = error.source) === null || _a === void 0 ? void 0 : _a.name) {
error.message = `${error.message} (source: ${(_b = error.source) === null || _b === void 0 ? void 0 : _b.name})`;
}
return Promise.reject(error);
});
}

@@ -44,0 +106,0 @@ exports.LoadersRegistry = LoadersRegistry;

2

index.d.ts

@@ -9,3 +9,3 @@ import { InspectorConfig } from '@graphql-inspector/config';

registerModule(loaderName: string): void;
loadSchema(pointer: SchemaPointerSingle, options?: Omit<LoadSchemaOptions, 'loaders'>): Promise<GraphQLSchema>;
loadSchema(pointer: SchemaPointerSingle, options: Omit<LoadSchemaOptions, "loaders"> | undefined, enableApolloFederation: boolean, enableAWS: boolean): Promise<GraphQLSchema>;
loadDocuments(pointer: SchemaPointerSingle, options?: Omit<LoadTypedefsOptions, 'loaders'>): Promise<Source[]>;

@@ -12,0 +12,0 @@ }

import { loadSchema, loadDocuments } from '@graphql-tools/load';
import { buildSchema } from 'graphql';

@@ -20,7 +21,56 @@ class LoadersRegistry {

}
loadSchema(pointer, options = {}) {
return loadSchema(pointer, Object.assign({ loaders: this.loaders }, options));
loadSchema(pointer, options = {}, enableApolloFederation, enableAWS) {
return enrichError(loadSchema(pointer, Object.assign(Object.assign(Object.assign({ loaders: this.loaders }, options), (enableApolloFederation
? {
schemas: [
buildSchema(/* GraphQL */ `
scalar _FieldSet
directive @external on FIELD_DEFINITION
directive @requires(fields: _FieldSet!) on FIELD_DEFINITION
directive @provides(fields: _FieldSet!) on FIELD_DEFINITION
directive @key(fields: _FieldSet!) on OBJECT | INTERFACE
directive @extends on OBJECT | INTERFACE
`),
],
}
: {})), (enableAWS
? {
schemas: [
buildSchema(/* GraphQL */ `
scalar AWSDate
scalar AWSTime
scalar AWSDateTime
scalar AWSTimestamp
scalar AWSEmail
scalar AWSJSON
scalar AWSURL
scalar AWSPhone
scalar AWSIPAddress
scalar BigInt
scalar Double
directive @aws_subscribe(
mutations: [String!]!
) on FIELD_DEFINITION
directive @deprecated(
reason: String
) on FIELD_DEFINITION | INPUT_FIELD_DEFINITION | ENUM | ENUM_VALUE
directive @aws_auth(
cognito_groups: [String!]!
) on FIELD_DEFINITION
directive @aws_api_key on FIELD_DEFINITION | OBJECT
directive @aws_iam on FIELD_DEFINITION | OBJECT
directive @aws_oidc on FIELD_DEFINITION | OBJECT
directive @aws_cognito_user_pools(
cognito_groups: [String!]
) on FIELD_DEFINITION | OBJECT
`),
],
}
: {}))));
}
loadDocuments(pointer, options = {}) {
return loadDocuments(pointer, Object.assign({ loaders: this.loaders }, options));
return enrichError(loadDocuments(pointer, Object.assign({ loaders: this.loaders }, options)));
}

@@ -37,4 +87,16 @@ }

}
/**
* Adds `(source: <file-path>)` suffix to error message if source is available
*/
function enrichError(looksPromising) {
return looksPromising.catch((error) => {
var _a, _b;
if ((_a = error.source) === null || _a === void 0 ? void 0 : _a.name) {
error.message = `${error.message} (source: ${(_b = error.source) === null || _b === void 0 ? void 0 : _b.name})`;
}
return Promise.reject(error);
});
}
export { LoadersRegistry, useLoaders };
//# sourceMappingURL=index.esm.js.map
{
"name": "@graphql-inspector/loaders",
"version": "0.0.0-canary.da4bdcc",
"version": "0.0.0-canary.e88eb08",
"description": "Loaders in GraphQL Inspector",
"sideEffects": false,
"peerDependencies": {
"@graphql-inspector/config": "0.0.0-canary.da4bdcc",
"@graphql-tools/utils": "^6.0.0",
"@graphql-inspector/config": "0.0.0-canary.e88eb08",
"@graphql-tools/utils": "^6.0.0 || ^7.0.0",
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"

@@ -10,0 +10,0 @@ },

Sorry, the diff of this file is not supported yet

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