bashcurl 'http://snowtooth.herokuapp.com/' \
-H 'Content-Type: application/json' \
--data '{"query":"{ allLifts { name }}"}'
graphql{
allLifts {
name
}
}
bashcurl 'http://snowtooth.herokuapp.com/' \
-H 'Content-Type: application/json' \
--data '{"query":"mutation {setLiftStatus(id: \"panorama\" status: OPEN) {name status}}"}'
bashλ http POST http://snowtooth.herokuapp.com query='{"query":"{ allLifts { name }}"}'