Description
Currently a GraphQL document is only allows a SourceCharacter :: /[\u0009\u000A\u000D\u0020-\uFFFF]/
and EscapedUnicode :: /[0-9A-Fa-f]{4}/
also prevents unicode characters above U+FFFF from being included into a GraphQL string.
Unicode code points are actually in the range 0 to 0x10FFFF. For example, unicode emoji characters like 😀 (U+1F600) have code points above U+FFFF.
Is there any reason why the source document doesn't allow unicode characters above U+FFFF? Or can we remove that restriction? Without that restriction the limitation of the unicode escape doesn't seem problematic.
If supporting a unicode escape for all unicode characters is desired, then one way of handling that is the way swift supports unicode escapes:
An arbitrary Unicode scalar, written as \u{n}, where n is a 1–8 digit hexadecimal number with a value equal to a valid Unicode code point