com.apollographql.federation.graphqljava._FieldSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of federation-graphql-java-support Show documentation
Show all versions of federation-graphql-java-support Show documentation
GraphQL Java server support for Apollo Federation
package com.apollographql.federation.graphqljava;
import graphql.Scalars;
import graphql.language.ScalarTypeDefinition;
import graphql.schema.GraphQLScalarType;
public final class _FieldSet {
public static final String typeName = "_FieldSet";
public static GraphQLScalarType type =
GraphQLScalarType.newScalar(Scalars.GraphQLString)
.name(typeName)
.description(null)
.coercing(Scalars.GraphQLString.getCoercing())
.build();
public static final ScalarTypeDefinition definition =
ScalarTypeDefinition.newScalarTypeDefinition().name(typeName).build();
}