1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

fix: Fix Resistance and Weaknesses GQL being incorrect type (#168)

This commit is contained in:
2021-11-12 16:05:57 +01:00
committed by GitHub
parent 64f107ca01
commit 3b8e87e284

View File

@ -77,7 +77,7 @@ type Card {
name: String!
rarity: String!
regulationMark: String
resistances: [[WeakResListItem]]
resistances: [WeakResListItem]
retreat: Float
set: Set!
stage: String
@ -85,7 +85,7 @@ type Card {
trainerType: String
types: [String]
variants: Variants
weaknesses: [[WeakResListItem]]
weaknesses: [WeakResListItem]
}
type AbilitiesListItem {