GET_MANGA_BY_ID: "\nquery ($id: Int) {\n Media(id: $id, 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 coverImage {\n large\n medium\n }\n genres\n tags {\n id\n name\n }\n }\n}\n" = ...

Query to fetch a single manga by its AniList ID.

export const GET_MANGA_BY_ID = `
query ($id: Int) {
Media(id: $id, type: MANGA) {
id
title {
romaji
english
native
}
synonyms
description
format
status
chapters
volumes
coverImage {
large
medium
}
genres
tags {
id
name
}
}
}
`;