Skip to content

Commit

Permalink
Bring back old scheduler
Browse files Browse the repository at this point in the history
Signed-off-by: Vihan <[email protected]>
  • Loading branch information
vihanb committed Apr 6, 2021
1 parent 9ec3823 commit 4bc0539
Show file tree
Hide file tree
Showing 4 changed files with 391 additions and 30 deletions.
4 changes: 4 additions & 0 deletions .graphqlrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
schema:
- ./frontend/schema.graphql
- ./frontend/client.graphql
documents: "frontend/src/**/*.{graphql,js,ts,jsx,tsx}"
23 changes: 23 additions & 0 deletions frontend/src/graphql/fragments/SchedulerCourse.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
fragment SchedulerCourse on CourseType {
title
units
waitlisted
openSeats
enrolled
enrolledMax
id
hasEnrollment
courseNumber
department
description
abbreviation
schedulerSections {
edges {
node {
primary {

}
}
}
}
}
Loading

0 comments on commit 4bc0539

Please sign in to comment.