Uses of Class
graphql.schema.idl.RuntimeWiring.Builder
Packages that use RuntimeWiring.Builder
-
Uses of RuntimeWiring.Builder in graphql.schema.idl
Methods in graphql.schema.idl that return RuntimeWiring.BuilderModifier and TypeMethodDescriptionRuntimeWiring.Builder.codeRegistry
(GraphQLCodeRegistry codeRegistry) This allows you to seed in your ownGraphQLCodeRegistry
instanceRuntimeWiring.Builder.codeRegistry
(GraphQLCodeRegistry.Builder codeRegistry) This allows you to seed in your ownGraphQLCodeRegistry
instanceRuntimeWiring.Builder.comparatorRegistry
(GraphqlTypeComparatorRegistry comparatorRegistry) You can specify your own sort order of graphql types viaGraphqlTypeComparatorRegistry
which will tell you what type of objects you are to sort when it asks for a comparator.RuntimeWiring.Builder.directive
(String directiveName, SchemaDirectiveWiring schemaDirectiveWiring) This provides the wiring code for a named directive.RuntimeWiring.Builder.directiveWiring
(SchemaDirectiveWiring schemaDirectiveWiring) This adds a directive wiring that will be called for all directives.RuntimeWiring.Builder.fieldVisibility
(GraphqlFieldVisibility fieldVisibility) This allows you to add a field visibility that will be associated with the schemastatic RuntimeWiring.Builder
RuntimeWiring.newRuntimeWiring()
static RuntimeWiring.Builder
RuntimeWiring.newRuntimeWiring
(RuntimeWiring originalRuntimeWiring) RuntimeWiring.Builder.scalar
(GraphQLScalarType scalarType) This allows you to add in new custom Scalar implementations beyond the standard set.RuntimeWiring.Builder.transformer
(SchemaGeneratorPostProcessing schemaGeneratorPostProcessing) Deprecated.RuntimeWiring.Builder.type
(TypeRuntimeWiring typeRuntimeWiring) This adds a type wiringRuntimeWiring.Builder.type
(TypeRuntimeWiring.Builder builder) This allows you to add a new type wiring via a builderRuntimeWiring.Builder.type
(String typeName, UnaryOperator<TypeRuntimeWiring.Builder> builderFunction) This form allows a lambda to be used as the builder of a type wiringRuntimeWiring.Builder.wiringFactory
(WiringFactory wiringFactory) Adds a wiring factory into the runtime wiringMethod parameters in graphql.schema.idl with type arguments of type RuntimeWiring.BuilderModifier and TypeMethodDescriptionstatic RuntimeWiring
EchoingWiringFactory.newEchoingWiring
(Consumer<RuntimeWiring.Builder> builderConsumer) RuntimeWiring.transform
(Consumer<RuntimeWiring.Builder> builderConsumer) This helps you transform the current RuntimeWiring object into another one by starting a builder with all the current values and allows you to transform it how you want.Constructors in graphql.schema.idl with parameters of type RuntimeWiring.Builder
SchemaTransformer
after the schema is built