graphql.scalars.object.JsonScalar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-extended-scalars Show documentation
Show all versions of graphql-java-extended-scalars Show documentation
A library fo extended scalars for graphql-java
package graphql.scalars.object;
import graphql.Internal;
import graphql.schema.GraphQLScalarType;
import static graphql.scalars.object.ObjectScalar.OBJECT_COERCING;
/**
* A synonym class for {@link graphql.scalars.object.ObjectScalar}
*
* Access this via {@link graphql.scalars.ExtendedScalars#Json}
*/
@Internal
public final class JsonScalar {
private JsonScalar() {}
public static final GraphQLScalarType INSTANCE = GraphQLScalarType.newScalar()
.name("JSON")
.description("A JSON scalar")
.coercing(OBJECT_COERCING)
.build();
}