...
Code Block |
---|
{ "first": 1, "fullText": "luke@jedi.org" } |
Query
Code Block |
---|
query FetchUsersFetchMembers($fullText: String, $first: Int!) { viewer { currentOrganization { members(fullText: $fullText, first: $first) { nodes { firstName lastName username email } } } } } |
...