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
- Host: GitHub
- URL: https://github.com/jadhielv/graphql-with-dotnet-core
- Owner: Jadhielv
- License: mit
- Created: 2019-10-23T02:20:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-29T05:16:10.000Z (almost 4 years ago)
- Last Synced: 2025-04-04T21:41:59.653Z (about 1 year ago)
- Topics: csharp, graphql, netcore
- Language: C#
- Homepage:
- Size: 46.9 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# GraphQL in .NET Core
[](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]()