π Add Student to College
The addStudentToCollege mutation allows administrators to enroll a new student in a college using their email and personal details.
Input Parameters
Parameter | Type | Description |
|---|---|---|
| String! | Email address of the student to enroll. |
| StudentInput! | Details of the student being added. |
Input Object: StudentInput
Field | Type | Description |
|---|---|---|
| String | External system identifier for the student. |
| String | First name of the student. |
| String | Last name of the student. |
Response Fields
Field | Type | Description |
|---|---|---|
| ID! | Unique identifier of the enrolled student. |
| String! | Full name of the student. |
| String! | Email address of the enrolled student. |