Uses of Interface
net.morimekta.providence.graphql.gql.GQLSelection
-
Packages that use GQLSelection Package Description net.morimekta.providence.graphql.gql -
-
Uses of GQLSelection in net.morimekta.providence.graphql.gql
Subinterfaces of GQLSelection in net.morimekta.providence.graphql.gql Modifier and Type Interface Description interfaceGQLFragmentA fragment is a piece of a field list representing a single type as part of a struct, union, union list, interface list etc.Classes in net.morimekta.providence.graphql.gql that implement GQLSelection Modifier and Type Class Description classGQLFieldRepresentation of a field in the response JSON.classGQLFragmentDefinitionA fragment definition, as part of the query.classGQLFragmentReferenceA reference to a fragment.classGQLInlineFragmentAn inline fragment, defining type-conditional field in-place.classGQLIntrospectionA introspection is very much like a 'normal' field, but has special meaning to graphql.classGQLMethodCallRepresentation of a method call in an operation.classGQLOperationRepresenting a single GQL operation, which is either a query or a mutation.Methods in net.morimekta.providence.graphql.gql that return types with arguments of type GQLSelection Modifier and Type Method Description java.util.List<GQLSelection>GQLOperation. getSelection(net.morimekta.providence.descriptor.PField field)default java.util.List<GQLSelection>GQLSelection. getSelection(net.morimekta.providence.descriptor.PField field)Get all selection entries related to the given field.java.util.List<GQLSelection>GQLField. getSelectionSet()java.util.List<GQLSelection>GQLFragment. getSelectionSet()java.util.List<GQLSelection>GQLFragmentDefinition. getSelectionSet()java.util.List<GQLSelection>GQLFragmentReference. getSelectionSet()java.util.List<GQLSelection>GQLInlineFragment. getSelectionSet()java.util.List<GQLSelection>GQLIntrospection. getSelectionSet()java.util.List<GQLSelection>GQLMethodCall. getSelectionSet()java.util.List<GQLSelection>GQLOperation. getSelectionSet()java.util.List<GQLSelection>GQLSelection. getSelectionSet()Constructor parameters in net.morimekta.providence.graphql.gql with type arguments of type GQLSelection Constructor Description GQLField(net.morimekta.providence.descriptor.PField field, java.lang.String alias, net.morimekta.providence.PMessage<?> arguments, java.util.List<GQLSelection> selectionSet)Make a full field selection definition.GQLField(net.morimekta.providence.descriptor.PField field, java.util.List<GQLSelection> selectionSet)Make a simple field selection based on a message field.GQLFragmentDefinition(java.lang.String name, net.morimekta.providence.descriptor.PMessageDescriptor<?> descriptor, java.util.List<GQLSelection> selectionSet)GQLInlineFragment(net.morimekta.providence.descriptor.PMessageDescriptor<?> descriptor, java.util.List<GQLSelection> selectionSet)Inline fragment with field set.GQLIntrospection(GQLIntrospection.Field field, java.lang.String alias, net.morimekta.providence.PMessage arguments, java.util.List<GQLSelection> selectionSet)GQLMethodCall(net.morimekta.providence.descriptor.PServiceMethod method, java.lang.String alias, net.morimekta.providence.PMessage<?> arguments, java.util.List<GQLSelection> selectionSet)Make a full field selection definition.GQLOperation(net.morimekta.providence.descriptor.PService service, boolean mutation, java.lang.String name, java.util.List<GQLSelection> selectionSet)
-