From a52cc3592236f7d89b3b829e21e9a2c6e5a1452a Mon Sep 17 00:00:00 2001 From: sgpinkus Date: Mon, 17 May 2021 12:06:12 +1000 Subject: [PATCH] Update APIReference-TypeSystem.md Add link to stackoverflow post explaining the unexplained options to GraphQLScalarTypeConfig. --- src/content/graphql-js/APIReference-TypeSystem.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/graphql-js/APIReference-TypeSystem.md b/src/content/graphql-js/APIReference-TypeSystem.md index 4191d1130a..96f803529e 100644 --- a/src/content/graphql-js/APIReference-TypeSystem.md +++ b/src/content/graphql-js/APIReference-TypeSystem.md @@ -215,6 +215,8 @@ type GraphQLScalarTypeConfig = { The leaf values of any request and input values to arguments are Scalars (or Enums) and are defined with a name and a series of serialization functions used to ensure validity. +See [this stackoverflow.com answer](https://stackoverflow.com/a/41513681/2038383) +for an explanation of the GraphQLScalarTypeConfig options. #### Example