@apollo/utils.removealiases
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -1,3 +0,3 @@ | ||
import { DocumentNode } from "graphql"; | ||
import { type DocumentNode } from "graphql"; | ||
export declare function removeAliases(ast: DocumentNode): DocumentNode; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@apollo/utils.removealiases", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Remove aliases from a GraphQL document", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -8,3 +8,3 @@ // removeAliases gets rid of GraphQL aliases, a feature by which you can tell a | ||
// { x(a:1) x(a:2) } (invalid) | ||
import { DocumentNode, FieldNode, visit } from "graphql"; | ||
import { type DocumentNode, type FieldNode, visit } from "graphql"; | ||
@@ -11,0 +11,0 @@ export function removeAliases(ast: DocumentNode): DocumentNode { |
Sorry, the diff of this file is not supported yet
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
4952