dnd-printer/gql/GetSpell.graphql

19 lines
243 B
GraphQL
Raw Normal View History

2024-02-25 11:22:24 +00:00
query GetSpell($index: String!){
spell(index: $index){
name,
level,
school {
name
}
desc,
components,
duration,
ritual,
range,
casting_time,
area_of_effect {
size
type
}
}
}