Skip to content

Jadhielv/graphql-with-dotnet-core

Repository files navigation

GraphQL in .NET Core

GitHub 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

About

GraphQL in .NET Core

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages