searchUsers
Retrieve a list of all users.
searchUsers(
after: String
before: String
first: Int
last: Int
filter: UserFilterInput
orderBy: UserOrderInput
): UserConnection!
Arguments
searchUsers.after ● String scalar
Returns the elements in the list that come after the specified cursor.
searchUsers.before ● String scalar
Returns the elements in the list that come before the specified cursor.
searchUsers.first ● Int scalar
Returns the first _n_ elements from the list.
searchUsers.last ● Int scalar
Returns the last _n_ elements from the list.
searchUsers.filter ● UserFilterInput input
Returns the users that match the user filter input.
searchUsers.orderBy ● UserOrderInput input
Returns the users sorted via this order input.
Type
UserConnection object
The connection type for User.