Eduflow
  • Welcome
  • API Reference
  • API Explorer
  • Getting started
    • API Overview
    • Authentication
    • Usage
  • GraphQL at Eduflow
    • Introduction to GraphQL
    • Variables
    • Fragments
    • Paginating queries
    • Inline fragments
  • Guides
    • Institutions
    • Courses
    • Flows and Activities
    • Reviews and Reflections
    • Discussions
    • Quizzes
    • Users & Participants
    • Tags
    • Course summary (outputs)
    • vs Peergrade
  • API Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Guides

Institutions

PreviousInline fragmentsNextCourses

Last updated 4 years ago

Was this helpful?

Eduflow's Public API is built around your institution. Institutions in Eduflow are the same concept as organizations in API's like GitHub and Sentry.

Institution membership is managed through . Institution owners can invite to them (or automatically have them linked upon registration through trusted domain names)

Institutions own , which are created by their instructors.

Querying

Automatically scoped to your institutio

{
  institution {
    createdAt
    name
    owner {
      name
      username
      email
    }
  }
}
{
  "data": {
    "institution": {
      "createdAt": "2021-02-08T17:39:53.137480",
      "name": "Duckburg University",
      "owner": {
        "name": "Louanne Kelley",
        "username": "louanne",
        "email": "kelley@dunder-mifflin.com"
      }
    }
  }
}
participants
courses
Search, sort, and invite members to your Institution
Institution dashboard: Course list (and search functionality)