Marius M.
Marius M.
I gave it a shot in #116
Sure, take your time. I though about exposing some of tablemark's features, e.g. aligning the field values in the table cell. Without clear requirements, I opted for the simplest implementation...
Did you get a chance to think about this?
I've got pretty much the same issue. Somehow, downgrading to 2.2.14 didn't fix it for me. This is my dependencies property in package.json ``` "dependencies": { "@graphql-codegen/c-sharp-operations": "^2.2.14", "@graphql-codegen/cli": "^4.0.1"...
@saihaj do you have any idea how to fix this? I'm not familiar enough with the code. Maybe others who contributed could chime in?
Anyone here wants to have a look at my analysis of the issue and my PR to fix it(#820)?
@jurkrit the PR to fix this was recently merged. Can you have a look and report back. I hope we can close the issue now.
Excellent news! Thank you @saihaj
@saihaj I gave it a go. The issue seems to have been in `CSharpOperationsVisitor._gql` where a `OperationDefinitionNode` was passed to `_transformFragments()` instead of a `string[]`. I'm still not very familiar...
The existing tests already check the correct output. The CSharp visitor inherits from base visitor which is not from the community repo, but the main repo. For some reason, the...