A playground for GraphQL in .net core
Run project and open a browser to this url https://localhost:44369/graphql
query {
students {
id
firstName
lastName
dateOfBirth
}
}
query{
student(id: 265){
firstName
dateOfBirth
}
}
mutation {
createStudent(
student: {
firstName: "Harrie"
lastName: "Nak"
dateOfBirth: "2000-08-27"
}
)
{
id
firstName
dateOfBirth
}
}
subscription{
studentAdded {
id
}
}