Dapper.GraphQL
Dapper.GraphQL copied to clipboard
A .NET Core library designed to integrate the Dapper and graphql-dotnet projects with ease-of-use in mind and performance as the primary concern.
Addresses #36 and is based on approach from https://github.com/Dotnet-Boxed/Templates. There might be better ways of dealing with connections but this has worked for me.
Hi, what is the point of calling serviceCollection.AddDapperGraphQL? Looking at the test project, it does not look like any of the added instances are ever retrieved via serviceProvider.GetRequiredService calls. I've...
I came across the need of making a pagination and I implemented the SQL Server way of doing it. It does work with postgree too since it is just ansi...
I was just in the process of evaluating building something with this project, it looks very useful. But having poked around just a little bit, I was wondering what the...
Hello, Doug, I understand things have been a bit busy lately. Is there any plans to keep going with this library? There are couple of outstanding PRs/questions. I'd also like...
I know this topic is [not popular](https://github.com/graphql/graphql-js/issues/585#issuecomment-262402544) with GraphQL community for a set of valid reasons. Nevertheless, there is definitely a demand for this functionality for applications that are DB...
I'm not sure if I'm just tired and stupid, but I have gone through all the examples and I cannot seem to find a way to limit the number of...
Looks like a pretty cool library! Not sure if it is well known, but the `ResolveFieldContext` does have a [`SubFields`](https://github.com/graphql-dotnet/graphql-dotnet/blob/master/src/GraphQL/Types/ResolveFieldContext.cs#L52) property which is the fields that should be requested. It...
We need performance-based unit tests, to ensure expected operations are as fast as they should be, and we don't see any undue or unexpected declines in performance.
Could we support pluralized table names for all the generic methods like `Insert`? I see it just defaults to a table with a name the same as type T. I...