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
9.0.1 fixes some formatting issues -- #287
And introduces a new issue, lost indentation of field arguments.
Please find attached the project for reproducing the issue: TryGraphQLParser.zip
Steps
x1-type.graphql was produced by 8.x formatting.
See expected indented arguments:
typeQuery {
"Fetches an object given its ID."node(
"ID of the object."id: ID!): Node"Lookup nodes by a list of IDs."nodes(
"The list of node IDs."ids: [ID!]!): [Node]!
Run
dotnet run -- x1-type.graphql
This produces the new x1-type.graphql.output.graphql.
See unexpected not indented arguments:
typeQuery {
"Fetches an object given its ID."node(
"ID of the object."id: ID!): Node"Lookup nodes by a list of IDs."nodes(
"The list of node IDs."ids: [ID!]!): [Node]!
The text was updated successfully, but these errors were encountered:
9.0.1 fixes some formatting issues -- #287
And introduces a new issue, lost indentation of field arguments.
Please find attached the project for reproducing the issue:
TryGraphQLParser.zip
Steps
x1-type.graphql
was produced by 8.x formatting.See expected indented arguments:
Run
This produces the new
x1-type.graphql.output.graphql
.See unexpected not indented arguments:
The text was updated successfully, but these errors were encountered: