π Get Student by ID
The student query retrieves details of a specific student using their unique ID. This includes name, email, degree enrollments, and course progress.
Parameters
Parameter | Type | Description |
|---|---|---|
| String! | Unique identifier of the student to retrieve. |
Response Fields
Field | Type | Description |
|---|---|---|
| ID! | Unique identifier of the student. |
| String | External identifier linked to the student. |
| String! | Full name of the student. |
| String! | Email address of the student. |
| DateTime! | Timestamp when the student record was last updated. |
| DateTime! | Timestamp when the student record was created. |
| [DegreeStudent!]! | List of degrees in which the student is enrolled. |
| [CourseStudent!]! | List of courses in which the student is enrolled. |