OBJECT

SearchUserConnection

A list of user returned from forage by user query.

link GraphQL Schema definition

1type SearchUserConnection {
2
3# List of matching user results.
4edges: [SearchUserEdge!]
5
6# Information about this page.
7pageInfo: PageInfo!
8
9# Total number of results.
10totalCount: Int!
11
12}