@apollo/federation-internals
Advanced tools
Comparing version 2.2.2 to 2.2.3
import { DocumentNode, FieldNode, FragmentDefinitionNode, SelectionNode, SelectionSetNode } from "graphql"; | ||
import { Directive, DirectiveTargetElement, FieldDefinition, InterfaceType, ObjectType, Schema, SchemaRootKind, Variables, VariableDefinitions, CompositeType, DeferDirectiveArgs, Variable } from "./definitions"; | ||
import { Directive, DirectiveTargetElement, FieldDefinition, InterfaceType, ObjectType, Schema, SchemaRootKind, Variables, VariableDefinitions, CompositeType, DeferDirectiveArgs, Variable, Type } from "./definitions"; | ||
import { SetMultiMap } from "./utils"; | ||
@@ -33,2 +33,4 @@ declare abstract class AbstractOperationElement<T extends AbstractOperationElement<T>> extends DirectiveTargetElement<T> { | ||
updateForAddingTo(selectionSet: SelectionSet): Field<TArgs>; | ||
private canRebaseOn; | ||
typeIfAddedTo(parentType: CompositeType): Type | undefined; | ||
hasDefer(): boolean; | ||
@@ -48,3 +50,6 @@ deferDirectiveArgs(): undefined; | ||
withUpdatedSourceType(newSourceType: CompositeType): FragmentElement; | ||
withUpdatedTypes(newSourceType: CompositeType, newCondition: CompositeType | undefined): FragmentElement; | ||
updateForAddingTo(selectionSet: SelectionSet): FragmentElement; | ||
private canRebaseOn; | ||
castedTypeIfAddedTo(parentType: CompositeType): CompositeType | undefined; | ||
hasDefer(): boolean; | ||
@@ -165,2 +170,4 @@ hasStream(): boolean; | ||
contains(that: SelectionSet): boolean; | ||
minus(that: SelectionSet): SelectionSet; | ||
canRebaseOn(parentTypeToTest: CompositeType): boolean; | ||
validate(): void; | ||
@@ -198,2 +205,3 @@ isEmpty(): boolean; | ||
updateForAddingTo(selectionSet: SelectionSet): FieldSelection; | ||
canAddTo(parentType: CompositeType): boolean; | ||
toSelectionNode(): FieldNode; | ||
@@ -223,2 +231,3 @@ withUpdatedSubSelection(newSubSelection: SelectionSet | undefined): FieldSelection; | ||
abstract updateForAddingTo(selectionSet: SelectionSet): FragmentSelection; | ||
abstract canAddTo(parentType: CompositeType): boolean; | ||
abstract withUpdatedSubSelection(newSubSelection: SelectionSet | undefined): FragmentSelection; | ||
@@ -225,0 +234,0 @@ protected us(): FragmentSelection; |
{ | ||
"name": "@apollo/federation-internals", | ||
"version": "2.2.2", | ||
"version": "2.2.3", | ||
"description": "Apollo Federation internal utilities", | ||
@@ -35,3 +35,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "33f401239ce457c2dd840f38e9c3aa9795cc1c14" | ||
"gitHead": "fdc15069d2aa9aa44bb0534111fc6af390e9a764" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
2005822
33768