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
"""
The query root of XXX GraphQL interface.
"""
extend type Query {
"""
Gets info about apple
"""
Apple {
}
}
And the first comment is not allowed and return Unexpected BlockString
If i remove extend or if i use # instead of """ it will be all right
The second comment is ok.
The text was updated successfully, but these errors were encountered:
I think this makes some sense, because if you provide a description both on the type definition and on a type extension (or on multiple type extensions) then it would need to know how to combine the descriptions. One could imagine it being legal as one as there is only one anywhere, but that's not the choice that was made.
Here is my example:
And the first comment is not allowed and return Unexpected BlockString
If i remove
extend
or if i use#
instead of"""
it will be all rightThe second comment is ok.
The text was updated successfully, but these errors were encountered: