Please find attached XUnit test project with the problem case ready to run:
Test.zip
This unnamed GraphQL query
query ($after: String, $first: Int!, $workspaceUrl: String!) {
desProjects(after: $after, first: $first, workspaceUrl: $workspaceUrl) {
nodes {
id
name
previewUrl
description
}
pageInfo {
endCursor
hasNextPage
}
}
}
becomes invalid GraphQL after formatting, due to removed query:
($after: String, $first: Int!, $workspaceUrl: String!) {
desProjects(after: $after, first: $first, workspaceUrl: $workspaceUrl) {
...