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

127 lines
1.6 KiB
JavaScript
Raw Normal View History

query ($id: ID!) {
findAnimeById(id: $id) {
id
ageRating
ageRatingGuide
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
2020-09-09 10:23:17 -04:00
categories(first: 100) {
nodes {
title(locales: "en")
}
}
2020-09-09 10:23:17 -04:00
characters(first: 100) {
nodes {
character {
id
names {
alternatives
canonical
localized(locales: "*")
}
image {
original {
height
name
url
width
}
}
slug
}
role
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
description(locales: "en")
startDate
endDate
episodeCount
episodeLength
totalLength
season
sfw
slug
2020-09-09 10:23:17 -04:00
mappings(first: 10) {
2020-08-24 13:09:43 -04:00
nodes {
externalId
externalSite
}
}
2020-09-09 10:23:17 -04:00
staff(first: 100) {
nodes {
person {
id
birthday
image {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
names {
alternatives
canonical
localized(locales: "*")
}
slug
}
role
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
status
2020-09-09 10:23:17 -04:00
streamingLinks(first: 10) {
nodes {
dubs
subs
regions
streamer {
id
siteName
}
url
}
}
subtype
titles {
alternatives
canonical
canonicalLocale
localized(locales: ["en", "en-t-ja", "ja", "ja-jp"])
}
totalLength
youtubeTrailerVideoId
}
}