Closed
Description
As of v0.12.0, field descriptions need to be represented as strings rather than comments.
That means that the following schema:
type Query {
# Receive a greeting.
hello: String
}
Needs to be rewritten as:
type Query {
"""
Receive a greeting.
"""
hello: String
}
Syntax highlighting should be updated to reflect the string type; right now it looks pretty wonky.
Metadata
Metadata
Assignees
Labels
No labels