ASPNetCoreGraphQL icon indicating copy to clipboard operation
ASPNetCoreGraphQL copied to clipboard

Sample project demonstrating a GraphQL service built with ASP.NET Core 2.2, Entity Framework Core and graphql-dotnet.

Results 5 ASPNetCoreGraphQL issues
Sort by recently updated
recently updated
newest added

Can you also add the postman collection to this solution? This is very easy to use when testing the api.

Hi! I cloned the repo and built it using .Net Core SDK 2.2.106. I use Visual Studio 2017, 15.9.11 on Window Server 2012. The solution builds successfully and I see...

I tried the below using VSCode and got the error related to connectionstring. I have updated the connectionstring to "NHLStatsDb": "Data Source=.;Initial Catalog=NHLStats;Trusted_Connection=True;MultipleActiveResultSets=true" On running the command by navigating to...

adding a player with mutation: ``` mutation ($player: PlayerInput!){ createPlayer(player: $player){ id name birthDate } } ``` and variables: ``` { "player":{ "name":"test" } } ``` creates the player, with...

Current build does not allow you to create an entity and then with another mutation delete that entity. Steps to reproduce: 1) Create Add Mutation 2) Create Delete Mutation 3)...