mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
32 lines
512 B
GraphQL
32 lines
512 B
GraphQL
query ($id: Int, $type: MediaType) {
|
|
Page {
|
|
media(id: $id, type: $type) {
|
|
characters {
|
|
nodes {
|
|
name {
|
|
first
|
|
middle
|
|
last
|
|
full
|
|
native
|
|
}
|
|
image {
|
|
medium
|
|
large
|
|
}
|
|
description
|
|
gender
|
|
dateOfBirth {
|
|
year
|
|
month
|
|
day
|
|
}
|
|
age
|
|
bloodType
|
|
favourites
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|