Query and Mutation in GraphQL- Part two

Recap In the previous article of the GraphQL series, we discussed the introduction of GraphQL and Pros & Cons of using GraphQL. If you haven’t read my previous articles then I highly encourage you to do so https://dotnetintellect.com/2020/07/29/introduction-to-graphql/ I believe you have prior understanding of EF Core and we'll be concentrating only on GraphQL concepts. …

Continue reading Query and Mutation in GraphQL- Part two

Configurations in ASP.NET Core

Introduction In .net framework, appsettings and configuration were much easier. There was a global configuration file(web/app.config) and, within it, there was a section named appsettings that could receive flat key-value pairs of string data. It was not perhaps the most optimised way as application has to be restarted even after simple change in the configuration file. …

Continue reading Configurations in ASP.NET Core