OBJECT

SearchUserEdge

Element in a list of users returned from forage.

link GraphQL Schema definition

1type SearchUserEdge {
2
3# Cursor for fetching the next page of results(only on last edge of current
4# connection).
5cursor: Cursor!
6
7# The information about user.
8node: User!
9
10}