Uses of Class
graphql.language.SelectionSet
-
Packages that use SelectionSet Package Description graphql.execution graphql.language graphql.normalized graphql.parser graphql.validation graphql.validation.rules -
-
Uses of SelectionSet in graphql.execution
Methods in graphql.execution with parameters of type SelectionSet Modifier and Type Method Description MergedSelectionSetFieldCollector. collectFields(FieldCollectorParameters parameters, SelectionSet selectionSet)Given a selection set this will collect the sub-field selections and return it as a mapprivate voidFieldCollector. collectFields(FieldCollectorParameters parameters, SelectionSet selectionSet, java.util.Set<java.lang.String> visitedFragments, java.util.Map<java.lang.String,MergedField> fields) -
Uses of SelectionSet in graphql.language
Fields in graphql.language declared as SelectionSet Modifier and Type Field Description private SelectionSetField.Builder. selectionSetprivate SelectionSetField. selectionSetprivate SelectionSetFragmentDefinition.Builder. selectionSetprivate SelectionSetFragmentDefinition. selectionSetprivate SelectionSetInlineFragment.Builder. selectionSetprivate SelectionSetInlineFragment. selectionSetprivate SelectionSetOperationDefinition.Builder. selectionSetprivate SelectionSetOperationDefinition. selectionSetMethods in graphql.language that return SelectionSet Modifier and Type Method Description SelectionSetSelectionSet.Builder. build()SelectionSetSelectionSet. deepCopy()SelectionSetField. getSelectionSet()SelectionSetFragmentDefinition. getSelectionSet()SelectionSetInlineFragment. getSelectionSet()SelectionSetOperationDefinition. getSelectionSet()SelectionSetSelectionSetContainer. getSelectionSet()private SelectionSetAstSorter. sortSelectionSet(SelectionSet selectionSet)SelectionSetSelectionSet. transform(java.util.function.Consumer<SelectionSet.Builder> builderConsumer)SelectionSetSelectionSet. withNewChildren(NodeChildrenContainer newChildren)Methods in graphql.language that return types with arguments of type SelectionSet Modifier and Type Method Description private AstPrinter.NodePrinter<SelectionSet>AstPrinter. selectionSet()Methods in graphql.language with parameters of type SelectionSet Modifier and Type Method Description static Field.BuilderField. newField(java.lang.String name, SelectionSet selectionSet)Field.BuilderField.Builder. selectionSet(SelectionSet selectionSet)FragmentDefinition.BuilderFragmentDefinition.Builder. selectionSet(SelectionSet selectionSet)InlineFragment.BuilderInlineFragment.Builder. selectionSet(SelectionSet selectionSet)OperationDefinition.BuilderOperationDefinition.Builder. selectionSet(SelectionSet selectionSet)private SelectionSetAstSorter. sortSelectionSet(SelectionSet selectionSet)TraversalControlNodeVisitor. visitSelectionSet(SelectionSet node, TraverserContext<Node> data)TraversalControlNodeVisitorStub. visitSelectionSet(SelectionSet node, TraverserContext<Node> context)Constructors in graphql.language with parameters of type SelectionSet Constructor Description Builder(SelectionSet existing)Field(java.lang.String name, SelectionSet selectionSet)alternative to using a Builder for convenienceField(java.lang.String name, java.lang.String alias, java.util.List<Argument> arguments, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)Field(java.lang.String name, java.util.List<Argument> arguments, SelectionSet selectionSet)alternative to using a Builder for convenienceFragmentDefinition(java.lang.String name, TypeName typeCondition, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)InlineFragment(TypeName typeCondition, SelectionSet selectionSet)alternative to using a Builder for convenienceInlineFragment(TypeName typeCondition, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)OperationDefinition(java.lang.String name, OperationDefinition.Operation operation, java.util.List<VariableDefinition> variableDefinitions, java.util.List<Directive> directives, SelectionSet selectionSet, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData) -
Uses of SelectionSet in graphql.normalized
Methods in graphql.normalized that return SelectionSet Modifier and Type Method Description private static SelectionSetExecutableNormalizedOperationToAstCompiler. selectionSet(java.util.List<Field> fields)private static @Nullable SelectionSetExecutableNormalizedOperationToAstCompiler. selectionSetOrNullIfEmpty(java.util.List<Selection<?>> selections)Methods in graphql.normalized with parameters of type SelectionSet Modifier and Type Method Description private voidExecutableNormalizedOperationFactory. collectFromSelectionSet(FieldCollectorNormalizedQueryParams parameters, SelectionSet selectionSet, java.util.List<ExecutableNormalizedOperationFactory.CollectedField> result, GraphQLCompositeType astTypeCondition, java.util.Set<GraphQLObjectType> possibleObjects) -
Uses of SelectionSet in graphql.parser
Methods in graphql.parser that return SelectionSet Modifier and Type Method Description protected SelectionSetGraphqlAntlrToLanguage. createSelectionSet(GraphqlParser.SelectionSetContext ctx) -
Uses of SelectionSet in graphql.validation
Methods in graphql.validation with parameters of type SelectionSet Modifier and Type Method Description voidAbstractRule. checkSelectionSet(SelectionSet selectionSet)private voidRulesVisitor. checkSelectionSet(SelectionSet node)private voidTraversalContext. enterImpl(SelectionSet selectionSet)voidAbstractRule. leaveSelectionSet(SelectionSet selectionSet)private voidRulesVisitor. leaveSelectionSet(SelectionSet node) -
Uses of SelectionSet in graphql.validation.rules
Methods in graphql.validation.rules with parameters of type SelectionSet Modifier and Type Method Description private voidOverlappingFieldsCanBeMerged. collectFields(java.util.Map<java.lang.String,java.util.Set<OverlappingFieldsCanBeMerged.FieldAndType>> fieldMap, SelectionSet selectionSet, GraphQLType parentType, java.util.Set<java.lang.String> visitedFragmentSpreads)voidOverlappingFieldsCanBeMerged. leaveSelectionSet(SelectionSet selectionSet)
-