@Retention(value=RUNTIME) @Target(value={FIELD,METHOD}) public @interface GraphQLCustomScalar
graphQLTypeName() contains the type name for this Scalar, as defined in the GraphQL schema.javaClass() contains the java data type that is used to store the data, on both the client and the
server side.| Modifier and Type | Required Element and Description |
|---|---|
String |
graphQLTypeName
The name of the Custom Scalar type, as defined in the GraphQL schema.
|
Class<?> |
javaClass
Contains the java data type that is has used to store the data, on both the client and the server side.
|
public abstract String graphQLTypeName
public abstract Class<?> javaClass
Copyright © 2020. All rights reserved.