Library for creating GraphQL servers with .NET core.
public class Query : GraphQLObjectType
{
	public Query() : base("Query", "Root query defintion")
	{
		this.Field("sum", (int[] numbers) => numbers.Sum());
	}
}
public class MyAwesomeSchema : GraphQLSchema
{
    public MyAwesomeSchema()
    {
        var rootQuery = new Query();
        this.AddKnownType(rootQuery);
        this.Query(rootQuery);
    }
}
[Route("api/[controller]")]
public class GraphQLController : Controller
{
    private MyAwesomeSchema schema = new MyAwesomeSchema();
    [HttpPost]
    public JsonResult Post(string query)
    {
        return this.Json(
            new
            {
                data = this.schema.Execute(query)
            }
        );
    }
}{
  sum(numbers: [1,2,3])
}{
  "sum" : 6
}Interested? Have a look on a better example here!
- Scalar type translation
- Nullability
- Untyped object definition
- Typed object definition
- Interfaces
- Input object definition
- Schema
- Queries
- Mutations
- Subscriptions (TBD)
- Execution
 
- Introspection
- Validation
- Roadmap
Wanna contribute? Awesome! Please follow this process to get your feature or bugfix in place.
git clone https://github.com/<your_username>/graphql-dotnetcore.git
cd graphql-dotnetcore
git checkout develop
...
git add -A
git commit -m "Awesome feature"
...
git add -A
git commit -m "Fix awesome feature"
...
git add -A
git commit -m "Fix the previous fix for awesome feature"
...
git rebase -i <commit>
More info about squashing http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html.
git push
The final step will be creating a pull request. Refer the github docs for more details about that https://help.github.com/articles/using-pull-requests/


