graphQLInt top-level property

GraphQLScalarType<int, int> graphQLInt
final

A signed integer.

Implementation

final GraphQLScalarType<int, int> graphQLInt = _GraphQLNumType(
  'Int',
  'A signed integer.',
  'an integer',
  (input) => input is int ? input : null,
);