@apollo/query-planner
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -7,2 +7,4 @@ # CHANGELOG for `@apollo/query-planner` | ||
## v0.3.1 | ||
- Narrow `graphql` peer dependency to a more fitting range `^15.4.0` based on our current usage of the package. This requirement was introduced by, but not captured in, changes within the recently released `@apollo/query-planner@0.3.0`. As such, this change will be released as a `patch` since the breaking change already accidentally happened and this is a correction to that oversight. [PR #913](https://github.com/apollographql/federation/pull/913) | ||
@@ -9,0 +11,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { FieldNode, InlineFragmentNode, GraphQLField, GraphQLObjectType, DirectiveNode } from 'graphql'; | ||
import { FieldNode, InlineFragmentNode, GraphQLField, GraphQLObjectType } from 'graphql'; | ||
import { MultiMap } from '../utilities/MultiMap'; | ||
@@ -42,5 +42,4 @@ declare module 'graphql' { | ||
provides?: FieldSet; | ||
otherKnownDirectiveUsages?: DirectiveNode[]; | ||
} | ||
export {}; | ||
//# sourceMappingURL=metadata.d.ts.map |
{ | ||
"name": "@apollo/query-planner", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "Apollo Query Planner", | ||
@@ -36,3 +36,3 @@ "author": "Apollo <opensource@apollographql.com>", | ||
}, | ||
"gitHead": "c1fc85b2232d38625fc5a45c32dad383db21e19b" | ||
"gitHead": "fe16570fe1ebb09acf71c7bfd0a264e7e65bc87f" | ||
} |
@@ -1,2 +0,7 @@ | ||
import { FieldNode, InlineFragmentNode, GraphQLField, GraphQLObjectType, DirectiveNode } from 'graphql'; | ||
import { | ||
FieldNode, | ||
InlineFragmentNode, | ||
GraphQLField, | ||
GraphQLObjectType, | ||
} from 'graphql'; | ||
import { MultiMap } from '../utilities/MultiMap'; | ||
@@ -16,3 +21,3 @@ | ||
_TContext, | ||
_TArgs = { [argName: string]: any } | ||
_TArgs = { [argName: string]: any }, | ||
> { | ||
@@ -59,3 +64,3 @@ federation?: FederationFieldMetadata; | ||
graphName: GraphName; | ||
keys: MultiMap<GraphName, FieldSet>, | ||
keys: MultiMap<GraphName, FieldSet>; | ||
isValueType: false; | ||
@@ -78,3 +83,2 @@ } | ||
provides?: FieldSet; | ||
otherKnownDirectiveUsages?: DirectiveNode[]; | ||
} |
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
5420
423282