HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/GraphQL/Queries/AnimeDetails.graphql

119 lines
1.3 KiB
JavaScript
Raw Normal View History

query ($slug: String) {
2020-07-28 16:11:13 -04:00
findAnimeBySlug(slug: $slug) {
ageRating
ageRatingGuide
bannerImage {
original {
height
name
url
width
}
2020-07-28 16:11:13 -04:00
views {
height
name
url
width
}
}
characters {
nodes {
character {
names {
canonical
alternatives
}
2020-07-28 16:11:13 -04:00
slug
}
role
voices {
nodes {
id
licensor {
id
2020-07-28 16:11:13 -04:00
name
}
locale
person {
id
names {
alternatives
canonical
localized
}
}
}
}
}
2020-07-28 16:11:13 -04:00
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
2020-07-28 16:11:13 -04:00
}
endDate
episodeCount
episodeLength
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
season
sfw
slug
staff {
nodes {
person {
id
birthday
image {
original {
height
name
url
width
}
2020-07-28 16:11:13 -04:00
views {
height
name
url
width
}
}
2020-07-28 16:11:13 -04:00
names {
alternatives
canonical
localized
}
}
2020-07-28 16:11:13 -04:00
role
}
2020-07-28 16:11:13 -04:00
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
2020-07-28 16:11:13 -04:00
status
synopsis
titles {
alternatives
canonical
localized
}
totalLength
}
}