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

73 lines
856 B
JavaScript
Raw Normal View History

2020-08-24 13:07:47 -04:00
query($id: ID!) {
findLibraryEntryById(id: $id) {
id
updatedAt
notes
nsfw
private
progress
reconsumeCount
reconsuming
status
rating
media {
id
slug
ageRating
2020-09-09 10:23:17 -04:00
categories(first: 100) {
2020-08-24 13:07:47 -04:00
nodes {
title
}
}
2020-09-09 10:23:17 -04:00
mappings(first: 10) {
2020-08-24 13:07:47 -04:00
nodes {
externalId
externalSite
}
}
posterImage {
views {
width
height
url
}
original {
width
height
url
}
}
startDate
endDate
titles {
canonical
localized
canonicalLocale
}
type
...on Anime {
episodeCount
episodeLength
2020-09-09 10:23:17 -04:00
streamingLinks(first: 10) {
2020-08-24 13:07:47 -04:00
nodes {
dubs
subs
regions
streamer {
id
siteName
}
url
}
}
subtype
}
...on Manga {
chapterCount
volumeCount
subtype
}
}
}
}