Last active
August 29, 2018 02:44
-
-
Save VitorLuizC/aae113f8fdd7cc526b2718f573503639 to your computer and use it in GitHub Desktop.
Query GraphQL de pesquisa de usuários.
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
| query SearchUsers ($term: String!, $type: SearchUsersType!) { | |
| users: searchUsers (term: $term, type: $type) { | |
| id | |
| name | |
| position | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment