Skip to content

Commit 5b34dc8

Browse files
committed
Update schema and change bundler
1 parent b387fcc commit 5b34dc8

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/schema.graphql

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@ type Course {
300300
id: UUID!
301301
mediaRecords: [MediaRecord!]!
302302
memberships: [CourseMembership!]!
303-
numberOfCourseMemberships: Int!
304303
published: Boolean!
305304
rewardScores: RewardScores!
306305
scoreboard: [ScoreboardItem!]!
@@ -1618,15 +1617,12 @@ directive @Size(min: Int = 0, max: Int = 2147483647, message: String = "graphql.
16181617
type Skill {
16191618
id: UUID!
16201619
isCustomSkill: Boolean!
1621-
skillAllUsersStats: SkillAllUsersStats!
16221620
skillCategory: String!
16231621
skillLevels: SkillLevels
16241622
skillName: String!
1625-
skillValue: Float!
16261623
}
16271624

16281625
type SkillAllUsersStats {
1629-
averageSkillValue: Float!
16301626
participantCount: Int!
16311627
skillId: UUID!
16321628
skillValueSum: Float!

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"noEmit": true,
1010
"esModuleInterop": true,
1111
"module": "esnext",
12-
"moduleResolution": "node",
12+
"moduleResolution": "bundler",
1313
"resolveJsonModule": true,
1414
"isolatedModules": true,
1515
"jsx": "preserve",

0 commit comments

Comments
 (0)