User
No description
type User implements Node {
auth0_identifier: ID!
email: String!
id: ID!
name: String!
namespaces: [Namespace!]!
roles: [UserRole!]!
tokens(
after: String
before: String
first: Int
last: Int
): UserTokenConnection!
}
Fields
User.auth0_identifier ● ID! non-null scalar
The auth0 identifier of the user.
User.email ● String! non-null scalar
The email of the user.
User.id ● ID! non-null scalar
The ID of the user (an UUID).
User.name ● String! non-null scalar
A name to identify the user.
User.namespaces ● [Namespace!]! non-null object
The namespaces associated with this user.
User.roles ● [UserRole!]! non-null object
Roles
User.tokens ● UserTokenConnection! non-null object
Returns the user tokens.
User.tokens.after●StringscalarReturns the elements in the list that come after the specified cursor.
User.tokens.before ● String scalar
Returns the elements in the list that come before the specified cursor.
User.tokens.first ● Int scalar
Returns the first n elements from the list.
User.tokens.last ● Int scalar
Returns the last n elements from the list.
Interfaces
Node interface
An object with an ID.
Returned by
createUser mutation ● user query ● userByAuth0Id query ● viewer query
Member of
ModifyUserResponse object ● UserEdge object