initial commit

This commit is contained in:
2024-02-25 12:22:24 +01:00
commit 4e60216b8e
10 changed files with 3360 additions and 0 deletions

7
gql/GetItem.graphql Normal file
View File

@@ -0,0 +1,7 @@
query GetItem($index: String!) {
magicItem(index: $index){
name,
rarity,
desc
}
}

19
gql/GetSpell.graphql Normal file
View File

@@ -0,0 +1,19 @@
query GetSpell($index: String!){
spell(index: $index){
name,
level,
school {
name
}
desc,
components,
duration,
ritual,
range,
casting_time,
area_of_effect {
size
type
}
}
}

1446
gql/schema.graphql Normal file

File diff suppressed because it is too large Load Diff