Skip to content

Instantly share code, notes, and snippets.

@felipe-ssilva
Last active June 19, 2019 20:37
Show Gist options
  • Save felipe-ssilva/ef6c12eb081ffbf49eb5e5714b501dc3 to your computer and use it in GitHub Desktop.
Save felipe-ssilva/ef6c12eb081ffbf49eb5e5714b501dc3 to your computer and use it in GitHub Desktop.
$ curl 'https://graphql.buildkite.com/v1' \
-H 'Authorization: Bearer xxxxxxx' \
-d '{
"query": "query { allUsers { user { name } } }"
}'
{
"data": {
"allUsers": {
"user": {
"name": "Felipe"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment