HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/Queries/GetUserHistory.graphql
Timothy J. Warren 06250b64cb
Some checks failed
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit
A few minor tweaks
2021-04-21 19:35:22 -04:00

35 lines
484 B
JavaScript

query ($slug: String!) {
findProfileBySlug(slug: $slug) {
libraryEvents(first: 100, kind: [PROGRESSED, UPDATED]) {
nodes {
id
changedData
kind
libraryEntry {
reconsumeCount
reconsuming
private
notes
}
media {
__typename
id
slug
posterImage {
views {
width
height
url
}
}
titles {
alternatives
canonical
localized
}
}
updatedAt
}
}
}
}