We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I scalars.py, this line:
def coerce_string(value): if isinstance(value, bool): return 'true' if value else 'false' return unicode(value)
If the input value of a mutation is a unicode string, I get a decode error. A simple fix, unicode(value) handles this for me.
unicode(value)