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

@graphql-tools/utils

Package Overview
Dependencies
Maintainers
3
Versions
1301
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-tools/utils - npm Package Compare versions

Comparing version 10.5.4 to 10.5.5-alpha-20241015101504-5852a7950b869e3e435eefb1bc585805c56be9c7

2

package.json
{
"name": "@graphql-tools/utils",
"version": "10.5.4",
"version": "10.5.5-alpha-20241015101504-5852a7950b869e3e435eefb1bc585805c56be9c7",
"description": "Common package containing utils and types for GraphQL tools",

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

import type { ASTNode, DirectiveNode, GraphQLSchema } from 'graphql';
export type DirectableASTNode = ASTNode & {
directives?: readonly DirectiveNode[];
directives?: readonly DirectiveNode[] | undefined;
};
export type DirectableObject = {
astNode?: DirectableASTNode | null;
extensionASTNodes?: readonly DirectableASTNode[] | null;
astNode?: DirectableASTNode | null | undefined;
extensionASTNodes?: readonly DirectableASTNode[] | null | undefined;
extensions?: {
directives?: Record<string, any>;
} | null;
directives?: Record<string, any> | undefined;
} | null | undefined;
};

@@ -12,0 +12,0 @@ export declare function getDirectiveExtensions<TDirectiveAnnotationsMap extends {

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