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