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

109 lines
1.2 KiB
JavaScript
Raw Normal View History

query ($slug: String!) {
2020-07-28 16:11:13 -04:00
findAnimeBySlug(slug: $slug) {
id
2020-07-28 16:11:13 -04:00
ageRating
ageRatingGuide
posterImage {
2020-07-28 16:11:13 -04:00
original {
height
name
url
width
}
2020-07-28 16:11:13 -04:00
views {
height
name
url
width
}
}
categories {
nodes {
title
}
}
2020-07-28 16:11:13 -04:00
characters {
nodes {
character {
id
2020-07-28 16:11:13 -04:00
names {
alternatives
canonical
localized
}
image {
original {
height
name
url
width
}
}
2020-07-28 16:11:13 -04:00
slug
}
role
}
2020-07-28 16:11:13 -04:00
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
2020-07-28 16:11:13 -04:00
}
startDate
2020-07-28 16:11:13 -04:00
endDate
episodeCount
episodeLength
2020-07-29 14:04:03 -04:00
totalLength
2020-07-28 16:11:13 -04:00
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
}
slug
}
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
subtype
2020-07-28 16:11:13 -04:00
synopsis
titles {
alternatives
2020-07-28 16:11:13 -04:00
canonical
canonicalLocale
2020-07-28 16:11:13 -04:00
localized
}
totalLength
youtubeTrailerVideoId
}
}