Query
Response
Queries
me
The authenticated account. Start with the Quickstart.
QUERY
me: Student!Returns
id
UUID!
email
String!
role
coursesOwned
[Course!]!
Query
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
query Me {
me {
id
email
role
coursesOwned {
id
name
status
}
}
}{
"data": {
"me": {
"id": "value",
"email": "string",
"role": "administrator",
"coursesOwned": [
{
"id": "value",
"name": "string",
"status": "private"
}
]
}
}
}The authenticated account. Start with the Quickstart.
me: Student!query Me {
me {
id
email
role
coursesOwned {
id
name
status
}
}
}{
"data": {
"me": {
"id": "value",
"email": "string",
"role": "administrator",
"coursesOwned": [
{
"id": "value",
"name": "string",
"status": "private"
}
]
}
}
}Was this page helpful?
