I am trying to document my APIs using GraphQL. For readability issues, I want to leave comments in multi-line but it doesn't seem to work with regular '\n' newline symbol
"""
Return:\n true : DB save successful\n false : DB save unsuccessful
"""
This is what i tried
However it outputs exactly the same without putting lines in the new line
Return:\n true : DB save successful\n false : DB save unsuccessful
Is it possible to arrange texts in new line like:
Return:
true : DB save successful
false : DB save unsuccessful