docs/source/schema/custom-scalars.mdx
import TopLevelAwait from "../shared/top-level-await.mdx"
The GraphQL specification includes default scalar types Int, Float, String, Boolean, and ID. Although these scalars cover the majority of use cases, some applications need to support other atomic data types (such as Date) or add validation to an existing type. To enable this, you can define custom scalar types.
To define a custom scalar, add it to your schema like so:
scalar MyCustomScalar
You can now use MyCustomScalar in your schema anywhere you can use a default scalar (e.g., as the type of an object field, input type field, or argument).
Updated in the October 2021 version of the GraphQL spec, you can include a @specifiedBy directive as metadata for schema consumers to understand what format the scalar is using. This directive does not provide automatic validation, but can provide useful context for humans reading the schema.
scalar MyCustomScalar @specifiedBy(url: "https://specs.example.com/rfc111")
However, Apollo Server still needs to know how to interact with and generate values of this new scalar type.
After you define a custom scalar type, you need to define how Apollo Server interacts with it. In particular, you need to define:
You define these interactions in an instance of the GraphQLScalarType class.
For more information about the
graphqllibrary's type system, see the official documentation.
Date scalarThe following GraphQLScalarType object defines interactions for a custom scalar that represents a date (this is one of the most commonly implemented custom scalars). It assumes that our backend represents a date with the Date JavaScript object.
import { GraphQLScalarType, Kind } from 'graphql';
const dateScalar = new GraphQLScalarType({
name: 'Date',
description: 'Date custom scalar type',
serialize(value) {
if (value instanceof Date) {
return value.getTime(); // Convert outgoing Date to integer for JSON
}
throw Error('GraphQL Date Scalar serializer expected a `Date` object');
},
parseValue(value) {
if (typeof value === 'number') {
return new Date(value); // Convert incoming integer to Date
}
throw new Error('GraphQL Date Scalar parser expected a `number`');
},
parseLiteral(ast) {
if (ast.kind === Kind.INT) {
// Convert hard-coded AST string to integer and then to Date
return new Date(parseInt(ast.value, 10));
}
// Invalid hard-coded value (not an integer)
return null;
},
});
This initialization defines the following methods:
serializeparseValueparseLiteralTogether, these methods describe how Apollo Server interacts with the scalar in every scenario.
serializeThe serialize method converts the scalar's back-end representation to a JSON-compatible format so Apollo Server can include it in an operation response.
In the example above, the Date scalar is represented on the backend by the Date JavaScript object. When we send a Date scalar in a GraphQL response, we serialize it as the integer value returned by the getTime function of a JavaScript Date object.
Note that Apollo Client cannot automatically interpret custom scalars (see issue), so your client must define custom logic to deserialize this value as needed.
parseValueThe parseValue method converts the scalar's JSON value to its back-end representation before it's added to a resolver's args.
Apollo Server calls this method when the scalar is provided by a client as a GraphQL variable for an argument. (When a scalar is provided as a hard-coded argument in the operation string, parseLiteral is called instead.)
parseLiteralWhen an incoming query string includes the scalar as a hard-coded argument value, that value is part of the query document's abstract syntax tree (AST). Apollo Server calls the parseLiteral method to convert the value's AST representation to the scalar's back-end representation.
In the example above, parseLiteral converts the AST value from a string to an integer, and then converts from integer to Date to match the result of parseValue.
After you define your GraphQLScalarType instance, you include it in the same resolver map that contains resolvers for your schema's other types and fields:
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { GraphQLScalarType, Kind } from 'graphql';
const typeDefs = `#graphql
scalar Date
type Event {
id: ID!
date: Date!
}
type Query {
events: [Event!]
}
`;
const dateScalar = new GraphQLScalarType({
// See definition above
});
const resolvers = {
Date: dateScalar,
// ...other resolver definitions...
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
const { url } = await startStandaloneServer(server);
console.log(`🚀 Server listening at: ${url}`);
In this example, we create a custom scalar called Odd that can only contain odd integers:
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { GraphQLScalarType, Kind, GraphQLError } from 'graphql';
// Basic schema
const typeDefs = `#graphql
scalar Odd
type Query {
# Echoes the provided odd integer
echoOdd(odd: Odd!): Odd!
}
`;
// Validation function for checking "oddness"
function oddValue(value: unknown) {
if (typeof value === 'number' && Number.isInteger(value) && value % 2 !== 0) {
return value;
}
throw new GraphQLError('Provided value is not an odd integer', {
extensions: { code: 'BAD_USER_INPUT' },
});
}
const resolvers = {
Odd: new GraphQLScalarType({
name: 'Odd',
description: 'Odd custom scalar type',
parseValue: oddValue,
serialize: oddValue,
parseLiteral(ast) {
if (ast.kind === Kind.INT) {
return oddValue(parseInt(ast.value, 10));
}
throw new GraphQLError('Provided value is not an odd integer', {
extensions: { code: 'BAD_USER_INPUT' },
});
},
}),
Query: {
echoOdd(_, { odd }) {
return odd;
},
},
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
const { url } = await startStandaloneServer(server);
console.log(`🚀 Server listening at: ${url}`);
If another library defines a custom scalar, you can import it and use it just like any other symbol.
For example, the graphql-type-json package defines the GraphQLJSON object, which is an instance of GraphQLScalarType. You can use this object to define a JSON scalar that accepts any value that is valid JSON.
First, install the library:
$ npm install graphql-type-json
Then import the GraphQLJSON object and add it to the resolver map as usual:
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import GraphQLJSON from 'graphql-type-json';
const typeDefs = `#graphql
scalar JSON
type MyObject {
myField: JSON
}
type Query {
objects: [MyObject]
}
`;
const resolvers = {
JSON: GraphQLJSON,
// ...other resolvers...
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
const { url } = await startStandaloneServer(server);
console.log(`🚀 Server listening at: ${url}`);