Skip to content

Commit

Permalink
Level data is not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
kezz authored Dec 17, 2024
1 parent 48b2c39 commit 7f8994b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ type CrownLevel {
@deprecated(reason: "Use levelData instead.")

"The overall level data."
levelData: LevelData
levelData: LevelData!

Check notice on line 181 in schema.graphqls

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'levelData' was added to object type 'CrownLevel'

Field 'levelData' was added to object type 'CrownLevel'

"The fishing level data."
fishingLevelData: LevelData
fishingLevelData: LevelData!

Check notice on line 184 in schema.graphqls

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'fishingLevelData' was added to object type 'CrownLevel'

Field 'fishingLevelData' was added to object type 'CrownLevel'

"The amount of trophies the player has."
trophies(
Expand Down

0 comments on commit 7f8994b

Please sign in to comment.