An open API service indexing awesome lists of open source software.

https://github.com/tarekmansour/graphql-server-side

Getting started with GraphQL for server side with .NET
https://github.com/tarekmansour/graphql-server-side

dotn dotnet-core graphql graphql-server

Last synced: 3 months ago
JSON representation

Getting started with GraphQL for server side with .NET

Awesome Lists containing this project

README

        

# GraphQL-Server-Side
Getting started with GraphQL for server side with .NET

## GraphQL
[GraphQL](https://graphql.org/) is a query language. It executes queries by using type systems which we define for our data. GraphQL isn’t tied to any specific language or a database, just the opposite, it is adaptable to our code and our data as well.

## Getting started
In this repo we get started with GraphQL for .NET by using [GraphQL for .NET](https://github.com/graphql-dotnet/graphql-dotnet) for server side.

## Sending the First Query
To test our GraphQL API, we are going to use the GraphQL UI playground tool. So, let’s first start our server application and then navigate to the `https://localhost:5001/ui/graphiql`