Package prompto.graphql
Interface GraphQLType
-
public interface GraphQLType
-
-
Field Summary
Fields Modifier and Type Field Description static Map<String,GraphQLType>TYPE_BY_NAME_MAP
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static GraphQLTypebuild(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)static graphql.schema.GraphQLInputTypebuildInputType(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)static graphql.schema.GraphQLOutputTypebuildOutputType(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)static GraphQLTypedoBuild(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)graphql.schema.GraphQLInputTypeinputType()graphql.schema.GraphQLOutputTypeoutputType()prompto.type.ITypereflectedType()
-
-
-
Field Detail
-
TYPE_BY_NAME_MAP
static final Map<String,GraphQLType> TYPE_BY_NAME_MAP
-
-
Method Detail
-
buildInputType
static graphql.schema.GraphQLInputType buildInputType(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)
-
buildOutputType
static graphql.schema.GraphQLOutputType buildOutputType(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)
-
inputType
graphql.schema.GraphQLInputType inputType()
-
outputType
graphql.schema.GraphQLOutputType outputType()
-
reflectedType
prompto.type.IType reflectedType()
-
build
static GraphQLType build(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)
-
doBuild
static GraphQLType doBuild(prompto.type.IType type, graphql.schema.GraphQLCodeRegistry.Builder registry)
-
-