We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbb7de9 commit 56e8f5dCopy full SHA for 56e8f5d
website/pages/type.mdx
@@ -214,6 +214,10 @@ functions used to ensure validity.
214
```js
215
const OddType = new GraphQLScalarType({
216
name: 'Odd',
217
+ // Can be used to link to a specification
218
+ // for this scalar, for instance the JSON
219
+ // specification.
220
+ specifiedByURL: '',
221
description:
222
'This custom scalar will only return a value if the passed in value is an odd integer, when it's not it will return null.'
223
serialize: (outputValue) => {
0 commit comments