API Changelog
Looking for general Eduflow updates? Check out Eduflow's Canny changelog to see our latest activities. For upcoming changes, see our Roadmap.
2022-06-12
Quizzes are now available in the QuizActivity data.
2022-03-03
Course invite links added to Course.joinUrl
. This returns the link based on sharing settings in the course participants page.
2021-08-27
Tags are now available via the Course.tags
and Participant.tags
fields and tag operations are available via the createTag
and addStudentsToTag
mutations.
2021-07-13
Discussions are now available via Connections:
{
activity(id: "ae8f3183-0fd0-48e1-b52d-2f455cd78db7") {
... on DiscussionActivity {
title
topics(first: 2) {
edges {
node {
title
content
likesCount
author {
name
}
commentsCount
comments {
edges {
node {
content
likesCount
repliesCount
author {
name
}
replies {
edges {
node {
content
author {
name
}
}
}
}
}
}
}
}
}
}
}
}
}
2020-01-20
Reviews and reflections are now available via Connections:
{
activity(id: "<activity_id>") {
... on ActivityInterface {
id
activityInterfaceTitle: title
activityType
... on TeacherReviewActivity {
reviews(first: 2) {
pageInfo {
endCursor
}
edges {
node {
receivers {
email
}
answers {
question {
id
}
textAnswer
}
}
}
}
}
}
}
}
Last updated
Was this helpful?