1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

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

This commit is contained in:
Florian Bouillon 2021-11-12 16:05:57 +01:00 committed by GitHub
parent 64f107ca01
commit 3b8e87e284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {