For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

Tags

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:

Last updated