-
Notifications
You must be signed in to change notification settings - Fork 1
Enrollment Interest API
tigermli edited this page Dec 1, 2020
·
3 revisions
mutation {
createInterest(parent: 2, course: 17) {
interest {
id
parent {
user {
id
firstName
lastName
}
}
course {
id
title
}
}
}
}
query {
interests(parentId: 2) {
id
parent {
user {
id
firstName
lastName
}
}
course {
id
title
}
}
}
query {
interests(courseId: 2) {
id
parent {
user {
id
firstName
lastName
}
}
course {
id
title
}
}
}