HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Queries/PersonDetails.graphql
Timothy J. Warren 3965f137e1
Some checks reported errors
timw4mail/HummingBirdAnimeClient/pipeline/head Something is wrong with the build of this commit
Move GraphQL queries up a level
2020-08-04 14:25:18 -04:00

69 lines
747 B
JavaScript

query ($id: ID!) {
findPersonById(id: $id) {
id
birthday
image {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
names {
alternatives
canonical
localized
}
voices {
licensor {
name
}
locale
mediaCharacter {
role
character {
id
image {
original {
height
name
url
width
}
}
names {
canonical
}
}
media {
id
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
titles {
canonical
localized
}
}
}
}
}
}