Variable GET_MANGA_BY_IDSConst
GET_MANGA_BY_IDS: "\nquery ($ids: [Int]) {\n Page(perPage: 50) {\n pageInfo {\n total\n currentPage\n lastPage\n hasNextPage\n perPage\n }\n media(id_in: $ids, type: MANGA) {\n id\n title {\n romaji\n english\n native\n }\n synonyms\n description\n format\n status\n chapters\n volumes\n countryOfOrigin\n source\n coverImage {\n large\n medium\n }\n genres\n tags {\n id\n name\n category\n }\n startDate {\n year\n month\n day\n }\n mediaListEntry {\n id\n status\n progress\n score\n private\n }\n isAdult\n }\n }\n}\n" = ...
Query to fetch multiple manga by their IDs in a single request. Can fetch up to 50 manga at once.