Server Introduction
Last updated
Last updated
- General purpose cross platform development platform maintained by Microsoft
- Framework for building modern, cloud-based, Internet-connected applications in .NET
- Open Source GraphQL Implementation for .NET
- Open-source NoSQL Database
- MongoDB Provider for .NET
- GUI and IDE for MongoDb
- Open-source SQL Database
- Open Source .NET Object-Relational Mapper (ORM)
- Open Source Admin interface for PostgreSQL
- PostgreSQL Provider for .NET
The goal of this tutorial is to build an API for a simplified Slack clone. Here is a quick rundown of what to expect in this tutorial.
You’ll start by learning the basics of how a GraphQL server works, simply by defining a GraphQL schema for the server and writing corresponding resolver functions. In the beginning, these resolvers will only work with data that’s stored in-memory - so nothing will be persisted beyond the run-time of the server.
Because nobody wants a server that’s not able to store and persist data, you’re going to add a database layer to it.
Once you have the database connected, you are going to add more advanced features to the API.
You’ll start by implementing signup/login functionality that enables users to authenticate against the API. This will also allow you to check the permissions of your users for certain API operations.
The next part of the tutorial is about adding real-time functionality to your API using GraphQL subscriptions.
Lastly, you’ll allow the consumers of the API to constrain the list of items they retrieve from the API by adding filtering and pagination capabilities to it.