You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gets parsed as "\nHello,\n World!\n\nYours,\n GraphQL.\n\n".
GraphQL specification requires the leading and trailing empty lines (i.e. lines containing only whitespace) to be stripped from block string value. Quoting the block string spec:
4. While the first item line in lines contains only WhiteSpace:
a. Remove the first item from lines.
5. While the last item line in lines contains only WhiteSpace:
a. Remove the last item from lines.
So the above block string should be parsed as "Hello,\n World!\n\nYours,\n GraphQL.".