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

123 lines
1.4 KiB
JavaScript
Raw Normal View History

query ($id: ID!) {
findMangaById(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
}
}
chapterCount
volumeCount
2020-09-09 10:23:17 -04:00
characters(first: 100) {
nodes {
character {
id
names {
canonical
alternatives
}
image {
original {
height
name
url
width
}
}
slug
}
role
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
2020-08-17 11:36:01 -04:00
description
startDate
endDate
2020-09-09 10:23:17 -04:00
mappings(first: 10) {
2020-08-24 13:09:43 -04:00
nodes {
externalId
externalSite
}
}
posterImage {
original {
height
name
url
width
}
views {
height
name
url
width
}
}
sfw
slug
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
}
slug
}
role
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
status
subtype
titles {
canonical
canonicalLocale
localized
}
}
}