Me
The User that is accessing the API.
type Me {
job(
jobUid: JobUid!
): Job
uid: UserUid!
handle: UserOrOrganizationHandle!
fullName: String
email: String
picture: URL
bio: String
createdAt: DateTime
updatedAt: DateTime
lastSignInAt: DateTime
lastActiveAt: DateTime
followerCount: Int
followingCount: Int
componentsCount: Int
projectsCount: Int
projects(
page: Page
): Projects
project(
by: ProjectSlugOrUid!
): Project
}
Fields
Me.job
● Job
interface
Query a specific job you started.
Me.job.jobUid
●JobUid!
non-null scalar
Me.uid
● UserUid!
non-null scalar
Your primary unique identifier.
Me.handle
● UserOrOrganizationHandle!
non-null scalar
Your unique account name.
Me.fullName
● String
scalar
Your full display name.
Me.email
● String
scalar
Your email address.
Me.picture
● URL
scalar
URL to retrieve your avatar image.
Me.bio
● String
scalar
Your bio as displayed on your profile page.
Me.createdAt
● DateTime
scalar
The time your account was created.
Me.updatedAt
● DateTime
scalar
The time your profile was last updated.
Me.lastSignInAt
● DateTime
scalar
The last time you signed-in.
Me.lastActiveAt
● DateTime
scalar
The last time you wwere active within the app.
Me.followerCount
● Int
scalar
Your follower count.
Me.followingCount
● Int
scalar
The count of users that you are following.
Me.componentsCount
● Int
scalar
The count of components you have published under your profile.
Me.projectsCount
● Int
scalar
The count of projects in your profile.
Me.projects
● Projects
object
The complete list of projects in your profile.
Me.projects.page
●Page
input
Me.project
● Project
object
Retrieve a specific project from your profile.
Me.project.by
●ProjectSlugOrUid!
non-null scalar
Returned By
me
query