conventions icon indicating copy to clipboard operation
conventions copied to clipboard

GraphQL Conventions Library for .NET

Results 17 conventions issues
Sort by recently updated
recently updated
newest added

We use GraphQL.Conventions and we have the issue that is described over here: https://github.com/graphql-dotnet/graphql-dotnet/blob/master/docs2/site/docs/guides/known-issues.md#entity-framework-concurrency-issues We would like to apply this suggestion: > Finally, you can create a scope within each...

We're using a graph-api-generator library to generate all types in the frontend. Queries always return a result -never null- and we have Angular 13 with strict typing. When we generate...

Is it currently possible to use this project along with federated schema? Currently we use the GraphQL.Utilities.Federation.FederatedSchema.For(...) with a text based schema and c# classes matching that. Having to keep...

I want to pass JsonSerializerSettings to the DocumentWriter in the GraphQLEngine, Would that be possible? I saw the solution to override it using the AddSingleton at startup, but I need...

Hello, is there any example of using the graphql-dotnet/authorization with this package? I would really like to use these together, but can't figure them out. The two things I'm stuck...

enhancement

Hello, what's the proper way to deal with `NonNull` not being `T`? Let's assume that you have a resolver like: ``` public async Task AllXs(...) { IEnumerable list = await...

question

It would be nice to add support of custom directives, since currently it is only available via reflection to get `_schema` from `GraphQLEngine` and invoke `RegisterDirective` passing `DirectiveGraphType`. There are...

enhancement

I was trying out the library and found that there doesn't seem to be a good way to use it with [GraphQL Server](https://github.com/graphql-dotnet/server) and access the user context that that...

enhancement

For now it is possible to set own dependency injector for executor using [WithDependencyInjector](https://github.com/graphql-dotnet/conventions/blob/master/src/GraphQL.Conventions/Adapters/Engine/GraphQLExecutor.cs#L90) method. Then using `InjectAttribute` for parameters of Query methods we can inject scoped services using provided...

question