HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Queries/PersonDetails.graphql
Timothy J. Warren 5a5421cee9
Some checks failed
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit
Use images directly from Kitsu for the rest of the views
2022-01-17 09:59:27 -05:00

101 lines
1.2 KiB
JavaScript

query ($slug: String!) {
findPersonBySlug(slug: $slug) {
id
description
birthday
image {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
names {
alternatives
canonical
localized
}
mediaStaff(first: 100) {
nodes {
id
role
media {
id
slug
type
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
titles {
alternatives
canonical
localized
}
}
}
}
voices(first: 500) {
nodes {
locale
mediaCharacter {
role
character {
id
slug
image {
original {
height
name
url
width
}
}
names {
canonical
}
}
media {
id
slug
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
titles {
canonical
localized
}
}
}
}
}
}
}