We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This depends on #992
But question is if inline descriptions can be Markdown hiqhlighted, for exampl same code as in #992:
""" Decimal number serialized as string. Should match regexp: `/^[+-]?[0-9]+(\.[0-9]+)$/` Format: `<sign>`? `<digit>`+ ( `.` `<digit>`+ )? Example: - `"1000"` - `"0.00000001"` - `"-10"` - `"+1"` This is invalid: - `".01"` *missing preceding zero* - `"1,000.00"` *invalid character* - `"1e-10"` *exponential form is not allowed* """ scalar Decimal
may be rendered similar to this:
"""
Decimal number serialized as string. Should match regexp: /^[+-]?[0-9]+(\.[0-9]+)$/ Format: <sign>? <digit>+ ( . <digit>+ )? Example: "1000" "0.00000001" "-10" "+1" This is invalid: ".01" missing preceding zero "1,000.00" invalid character "1e-10" exponential form is not allowed
Should match regexp: /^[+-]?[0-9]+(\.[0-9]+)$/
/^[+-]?[0-9]+(\.[0-9]+)$/
Format: <sign>? <digit>+ ( . <digit>+ )?
<sign>
<digit>
.
Example:
"1000"
"0.00000001"
"-10"
"+1"
This is invalid:
".01"
"1,000.00"
"1e-10"
""" scalar Decimal
The text was updated successfully, but these errors were encountered:
Is there a spec in GraphQL for this? Should multiline strings like this, that aren't a value for something, always be interpreted as markdown?
BTW, #586 makes more sense after seeing this. I'd like to know more about this, though, before figuring out how to handle it.
Sorry, something went wrong.
I found the spec at https://facebook.github.io/graphql/draft/#sec-Descriptions. Perfect!
Successfully merging a pull request may close this issue.
This depends on #992
But question is if inline descriptions can be Markdown hiqhlighted, for exampl same code as in #992:
may be rendered similar to this:
"""
The text was updated successfully, but these errors were encountered: