Const
export const GET_USER_MANGA_LIST = `
query ($userId: Int, $chunk: Int, $perChunk: Int) {
MediaListCollection(userId: $userId, type: MANGA, chunk: $chunk, perChunk: $perChunk) {
lists {
name
entries {
id
mediaId
status
progress
score
private
media {
id
title {
romaji
english
native
}
format
status
chapters
}
}
}
}
}
`;
Query to fetch a user's manga list from AniList.