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

https://github.com/jadhielv/graphql-with-dotnet-core

GraphQL in .NET Core
https://github.com/jadhielv/graphql-with-dotnet-core

csharp graphql netcore

Last synced: about 1 year ago
JSON representation

GraphQL in .NET Core

Awesome Lists containing this project

README

          

# GraphQL in .NET Core

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Jadhielv/graphql-with-dotnet-core/blob/master/LICENSE)

## Getting Started

This project is a starting point for a learn how you can use GraphQL in **.NET Core**

### How to Use

**GetAll**

```
{
"data": {
"jedis": [
{
"id": "1",
"name": "Luke",
"side": "Light"
},
{
"id": "2",
"name": "Yoda",
"side": "Light"
},
{
"id": "3",
"name": "Darth Vader",
"side": "Dark"
}
]
}
}
```

**Working with parameters**

```
{
"data": {
"jedi": {
"name": "Darth Vader"
}
}
}
```

## License

This project uses the following license -> [MIT]()