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
What's the proper way to send a multiline text to a mutation argument? Sending a text with newline characters causes Syntax Error GraphQL (xxx) Unterminated string. Using this reference, I tried block strings, but it didn't really work.
Set up:
class WishTopic(Mutation):
class Arguments:
title = String()
hint = String()
feedback = String()
...
What's the proper way to send a multiline text to a mutation argument? Sending a text with newline characters causes
Syntax Error GraphQL (xxx) Unterminated string
. Using this reference, I tried block strings, but it didn't really work.Set up:
Query:
Result:
Syntax Error GraphQL (xxx) Expected Name, found String
Am I missing something?
The text was updated successfully, but these errors were encountered: