nestjs-query wrong graphql format
Im trying to use the MuiInferencer together with NestJS-Query
the Format that is correct and generated by NestJS-Query is following
query {
players {
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
firstName
lastName
created
}
cursor
}
}
}
But the query that Refine generates looks like the following
query { players { nodes { id, firstName }, totalCount } }
Note that "nodes" does not exist
the Format that is correct and generated by NestJS-Query is following
query {
players {
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
firstName
lastName
created
}
cursor
}
}
}
But the query that Refine generates looks like the following
query { players { nodes { id, firstName }, totalCount } }
Note that "nodes" does not exist
