users
Returns the list of user that joined the project The search field allows to search in : id, phonNumber, firstName, allFirstNames, lastName
This query is restricted to a Project access token (Learn More)
users(
after: String
before: String
filters: UserFilterInput
first: Int! = 50
search: String
): UserConnection!
Arguments
users.after
● String
scalar
the index (a unique reference in string form) from which you will load the following elements
users.before
● String
scalar
the index (a unique reference in string form) from which you will load the preceding elements
users.filters
● UserFilterInput
input
a filtering table you can apply to your list of connections
users.first
● Int!
non-null scalar
the number of elements to load (maximum: 100)
users.search
● String
scalar
@deprecated(reason: "use the search
field in UserFilterInput
")
Type
UserConnection
object
Implements the Relay Connection interface, used to paginate list of element (Learn More)