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

@graphql-tools/wrap

Package Overview
Dependencies
Maintainers
3
Versions
1769
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-tools/wrap - npm Package Compare versions

Comparing version 6.0.4-alpha-c447d90.0 to 6.0.4-alpha-cfdd5fe.0

transforms/TransformInputFields.d.ts

8

package.json
{
"name": "@graphql-tools/wrap",
"version": "6.0.4-alpha-c447d90.0",
"version": "6.0.4-alpha-cfdd5fe.0",
"description": "A set of utils for faster development of GraphQL tools",

@@ -10,5 +10,5 @@ "sideEffects": false,

"dependencies": {
"@graphql-tools/delegate": "6.0.4-alpha-c447d90.0",
"@graphql-tools/schema": "6.0.4-alpha-c447d90.0",
"@graphql-tools/utils": "6.0.4-alpha-c447d90.0",
"@graphql-tools/delegate": "6.0.4-alpha-cfdd5fe.0",
"@graphql-tools/schema": "6.0.4-alpha-cfdd5fe.0",
"@graphql-tools/utils": "6.0.4-alpha-cfdd5fe.0",
"tslib": "~2.0.0"

@@ -15,0 +15,0 @@ },

@@ -1,2 +0,2 @@

import { GraphQLSchema, GraphQLFieldResolver, BuildSchemaOptions, GraphQLFieldConfig, FieldNode, FragmentDefinitionNode, SelectionNode } from 'graphql';
import { GraphQLSchema, GraphQLFieldResolver, BuildSchemaOptions, GraphQLInputFieldConfig, GraphQLFieldConfig, FieldNode, FragmentDefinitionNode, SelectionNode, ObjectFieldNode } from 'graphql';
import { Executor, Subscriber } from '@graphql-tools/delegate';

@@ -10,4 +10,6 @@ export interface IMakeRemoteExecutableSchemaOptions {

}
export declare type InputFieldTransformer = (typeName: string, fieldName: string, inputFieldConfig: GraphQLInputFieldConfig) => GraphQLInputFieldConfig | [string, GraphQLInputFieldConfig] | null | undefined;
export declare type InputFieldNodeTransformer = (typeName: string, fieldName: string, inputFieldNode: ObjectFieldNode, variables: Record<string, any>) => ObjectFieldNode | Array<ObjectFieldNode>;
export declare type FieldTransformer = (typeName: string, fieldName: string, fieldConfig: GraphQLFieldConfig<any, any>) => GraphQLFieldConfig<any, any> | [string, GraphQLFieldConfig<any, any>] | null | undefined;
export declare type RootFieldTransformer = (operation: 'Query' | 'Mutation' | 'Subscription', fieldName: string, fieldConfig: GraphQLFieldConfig<any, any>) => GraphQLFieldConfig<any, any> | [string, GraphQLFieldConfig<any, any>] | null | undefined;
export declare type FieldNodeTransformer = (typeName: string, fieldName: string, fieldNode: FieldNode, fragments: Record<string, FragmentDefinitionNode>) => SelectionNode | Array<SelectionNode>;
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