This repository contains a series of posts with branch wise code on builing scalable GraphQL end-points with ASP.NET Core. Each branch has its own readme where you can find rach relevent post. You can also read the series from my blog,
http://fiyazhasan.me/tag/graphql-dotnet/
Ask anything you want in the comment section of my blog.
- Download the zip or clone the project
- Make sure you have necessary dotnet core sdks installed (I'm using ASP.NET Core 2.1)
- Make sure you have Postgres installed in your system
- Change the connection string in
appsettings.json
to target your local posgres database. - From command line go to the root of the project and create a db migration script
dotnet ef migrations add Initial -o Data/Migrations
- Apply migration in your database
dotnet ef database update
- Build and run the project
dotnet build
dotnet run
Part III - Dependency Injection
Part IV - GraphiQL - An in-browser IDE
Part V - Fields, Arguments, Variables
Part VI - Persist Data - Postgres with EF Core
Part VIII - Entity Relations - One to Many
Part IX - Entity Relations - Many to Many
Coming Soon...
Joe McBride - Thanks for providing an awesome community driven project
Jon Galloway - Thanks for featuring posts on ASP.NET Community Standup