Package graphql

Class Scalars

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static GraphQLScalarType GraphQLBoolean
      This represents the "Boolean" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Boolean
      static GraphQLScalarType GraphQLFloat
      This represents the "Float" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Float
      static GraphQLScalarType GraphQLID
      This represents the "ID" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-ID
      static GraphQLScalarType GraphQLInt
      This represents the "Int" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Int
      static GraphQLScalarType GraphQLString
      This represents the "String" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-String
    • Constructor Summary

      Constructors 
      Constructor Description
      Scalars()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • GraphQLInt

        public static final GraphQLScalarType GraphQLInt
        This represents the "Int" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Int

        The Int scalar type represents a signed 32‐bit numeric non‐fractional value.

      • GraphQLFloat

        public static final GraphQLScalarType GraphQLFloat
        This represents the "Float" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Float

        Note: The Float type in GraphQL is equivalent to Double in Java. (double precision IEEE 754)

      • GraphQLString

        public static final GraphQLScalarType GraphQLString
        This represents the "String" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-String
      • GraphQLBoolean

        public static final GraphQLScalarType GraphQLBoolean
        This represents the "Boolean" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-Boolean
      • GraphQLID

        public static final GraphQLScalarType GraphQLID
        This represents the "ID" type as defined in the graphql specification : https://spec.graphql.org/October2021/#sec-ID

        The ID scalar type represents a unique identifier, often used to re-fetch an object or as the key for a cache. The ID type is serialized in the same way as a String; however, it is not intended to be human‐readable. While it is often numeric, it should always serialize as a String.

    • Constructor Detail

      • Scalars

        public Scalars()