graphql-query-builder-dotnet icon indicating copy to clipboard operation
graphql-query-builder-dotnet copied to clipboard

A .NET GraphQL query builder

Results 9 graphql-query-builder-dotnet issues
Sort by recently updated
recently updated
newest added

Hello! Is there a way to use query variables in the builder?

Implement querying for Union Types (SEE https://graphql.org/learn/schema/#union-types) This Includes the implementation of `AddPossibleType` on the query builder to generate `... on` clauses. Added test cases. All passing. Nested works as...

### Description I need to filter a query based on nullable field. Currently I cannot use the query builder to say : { neq: null } because this triggers compiler...

Hi! Thanks a lot for this Library! It's a life saver. However, I'm trying to use the Query with GraphQL.Client. From the look of it, it seems that the problem...

Hi there, Does GraphQL.Query.Builder support unions? https://graphql.org/learn/schema/#union-types If not, have you got any plan to support unions in a not too distant future? Regards, Reureu

Hi, i have the following method: `public string GetQuery(params Expression[] properties){}` so i able to use it this way: `GetQuery(x => x.FirstName, x => x.NestedProp.NestedValue);` how can i map the...

For a project that I'm working on, at runtime, I'm generating GraphQL queries that are displayed to the user. Therefore, I wanted the output of your library to contain appropriate...

Or do you plan to extend this library with mutations?

Thanks for this project. I've been looking for such builder for a while. I've write a GraphQL query builder and the syntax is similar to yours. I will follow your...