dotnet build dotnet run
http://localhost:5246/GraphQL/
query example1 { books { title author { name } } }
mutation example2 { addBook(input: { book: { title: "Cool Book 2023", author: { name: "Richard Magnor Stenbro"}} }) { book { title author { name } } } }