Timothy J. Warren
1e3bfa7a0a
All checks were successful
timw4mail/HummingBirdAnimeClient/pipeline/pr-master This commit looks good
42 lines
635 B
JavaScript
42 lines
635 B
JavaScript
query (
|
|
$slug: String!,
|
|
$type: MediaTypeEnum!,
|
|
$status: [LibraryEntryStatusEnum!],
|
|
$after: String
|
|
) {
|
|
findProfileBySlug(slug: $slug) {
|
|
library {
|
|
all(first: 100, after: $after, mediaType: $type, status: $status) {
|
|
pageInfo {
|
|
endCursor
|
|
hasNextPage
|
|
hasPreviousPage
|
|
startCursor
|
|
}
|
|
totalCount
|
|
nodes {
|
|
id
|
|
notes
|
|
nsfw
|
|
private
|
|
progress
|
|
progressedAt
|
|
rating
|
|
reconsumeCount
|
|
reconsuming
|
|
status
|
|
media {
|
|
id
|
|
slug
|
|
mappings(first: 10) {
|
|
nodes {
|
|
externalId
|
|
externalSite
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |