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

https://github.com/stenbror/graphql_dotnet_example

Just a simple test of C# / .net GraphQL Server
https://github.com/stenbror/graphql_dotnet_example

Last synced: about 2 months ago
JSON representation

Just a simple test of C# / .net GraphQL Server

Awesome Lists containing this project

README

          

## Build and run

dotnet build
dotnet run

## URL For playground

http://localhost:5246/GraphQL/

## GraphQL query example

query example1
{
books {
title
author {
name
}
}
}

## GraphQL mutation example

mutation example2
{
addBook(input: { book: { title: "Cool Book 2023", author: { name: "Richard Magnor Stenbro"}} }) {
book {
title
author {
name
}
}
}
}