Last active
June 19, 2019 20:37
-
-
Save felipe-ssilva/ef6c12eb081ffbf49eb5e5714b501dc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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