2020-08-24 19:17:41 -04:00
|
|
|
query ($slug: String!) {
|
|
|
|
findProfileBySlug(slug: $slug) {
|
2021-07-30 09:37:06 -04:00
|
|
|
libraryEvents(first: 100, kind: [PROGRESSED, UPDATED], sort: [{
|
|
|
|
direction: DESCENDING,
|
|
|
|
on: UPDATED_AT,
|
|
|
|
}]) {
|
2020-08-24 19:17:41 -04:00
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
changedData
|
|
|
|
kind
|
|
|
|
libraryEntry {
|
|
|
|
reconsumeCount
|
|
|
|
reconsuming
|
|
|
|
private
|
|
|
|
notes
|
|
|
|
}
|
|
|
|
media {
|
|
|
|
__typename
|
|
|
|
id
|
|
|
|
slug
|
|
|
|
posterImage {
|
|
|
|
views {
|
|
|
|
width
|
|
|
|
height
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
titles {
|
|
|
|
alternatives
|
|
|
|
canonical
|
|
|
|
localized
|
|
|
|
}
|
2021-10-08 22:55:54 -04:00
|
|
|
...on Anime {
|
|
|
|
episodeCount
|
|
|
|
}
|
|
|
|
...on Manga {
|
|
|
|
chapterCount
|
|
|
|
}
|
2020-08-24 19:17:41 -04:00
|
|
|
}
|
|
|
|
updatedAt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|