94 lines
1.4 KiB
Plaintext
94 lines
1.4 KiB
Plaintext
|
# @name GetAniListUserWatchList
|
||
|
|
||
|
POST https://graphql.anilist.co
|
||
|
Accept: applicaton/json
|
||
|
X-REQUEST-TYPE: Graphql
|
||
|
|
||
|
query (
|
||
|
$page: Int
|
||
|
$perPage: Int
|
||
|
$userId: Int
|
||
|
$listType: MediaType
|
||
|
$status: MediaListStatus
|
||
|
$sort: [MediaListSort]
|
||
|
) {
|
||
|
Page(page: $page, perPage: $perPage) {
|
||
|
pageInfo {
|
||
|
total
|
||
|
perPage
|
||
|
currentPage
|
||
|
lastPage
|
||
|
hasNextPage
|
||
|
}
|
||
|
mediaList(userId: $userId, type: $listType, status: $status, sort: $sort) {
|
||
|
id
|
||
|
mediaId
|
||
|
userId
|
||
|
media {
|
||
|
id
|
||
|
idMal
|
||
|
title {
|
||
|
romaji
|
||
|
english
|
||
|
native
|
||
|
}
|
||
|
description
|
||
|
coverImage {
|
||
|
large
|
||
|
}
|
||
|
season
|
||
|
seasonYear
|
||
|
status
|
||
|
episodes
|
||
|
nextAiringEpisode {
|
||
|
airingAt
|
||
|
timeUntilAiring
|
||
|
episode
|
||
|
}
|
||
|
}
|
||
|
status
|
||
|
startedAt {
|
||
|
year
|
||
|
month
|
||
|
day
|
||
|
}
|
||
|
completedAt {
|
||
|
year
|
||
|
month
|
||
|
day
|
||
|
}
|
||
|
notes
|
||
|
progress
|
||
|
score
|
||
|
repeat
|
||
|
user {
|
||
|
id
|
||
|
name
|
||
|
avatar {
|
||
|
large
|
||
|
medium
|
||
|
}
|
||
|
statistics {
|
||
|
anime {
|
||
|
count
|
||
|
statuses {
|
||
|
status
|
||
|
count
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
{
|
||
|
"page": 1,
|
||
|
"perPage": 20,
|
||
|
"userId": 413504,
|
||
|
"listType": "ANIME",
|
||
|
"status": "CURRENT",
|
||
|
"sort": "UPDATED_TIME_DESC"
|
||
|
}
|