OBJECT
SearchForResultUsers
Contains user search results.
link GraphQL Schema definition
1 type SearchForResultUsers { 2 3 # Cursor for fetching the next page of results. 4 : String 5 6 # List of edges containing user results and trackingIDs. 7 : [SearchForEdge!]! 8 9 # List of matching user results. 10 : [User!] 11 12 # Information about this page. 13 : PageInfo! 14 15 # Order in which the result should be displayed. 16 : Int! 17 18 # Total number of results. 19 : Int! 20 21 }