GET_USER_MANGA_LIST: "\nquery ($userId: Int, $chunk: Int, $perChunk: Int) {\n MediaListCollection(userId: $userId, type: MANGA, chunk: $chunk, perChunk: $perChunk) {\n lists {\n name\n entries {\n id\n mediaId\n status\n progress\n score\n private\n media {\n id\n title {\n romaji\n english\n native\n }\n format\n status\n chapters\n }\n }\n }\n }\n}\n" = ...

Query to fetch a user's manga list from AniList.

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
}
}
}
}
}
`;