make gql_run
- You can go to
localhost:3030/graphiql
. - You can issue HTTP Requests to
localhost:3030/graphql/http
.
You enter the query you want on the left side, and click play!
{
games(titleRegex: "Great"){
title
runs {
time
runner {
name
}
}
}
}
This nesting shows the power and flexibility of GraphQL, I think.
- Make a real server with real types.
- Delete this sample.