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 GraphQL spec added support for multiline strings ("Block Strings") in RFC #327. Then in June 2018 the schema declared support for using Block Strings to write descriptions.
It would be useful if Rewrap supported wrapping Block Strings in .graphql files.
For example:
"""Defines the return type for `MyMutation`. This mutation does some stuff and then returns the name of the operation that was executed."""typeMyMutation {
name: String!
}
would become
"""Defines the return type for `MyMutation`. This mutation does some stuff and then returns the name of the operation that was executed."""typeMyMutation {
name: String!
}
The text was updated successfully, but these errors were encountered:
The GraphQL spec added support for multiline strings ("Block Strings") in RFC #327. Then in June 2018 the schema declared support for using Block Strings to write descriptions.
It would be useful if Rewrap supported wrapping Block Strings in
.graphql
files.For example:
would become
The text was updated successfully, but these errors were encountered: