Fix: Attempt at fixing Library Refresh

This commit is contained in:
Youwes09
2026-04-20 21:29:53 -05:00
parent f5a66ab5d1
commit 3f7102556b
4 changed files with 171 additions and 62 deletions
+13 -1
View File
@@ -1,3 +1,15 @@
export const GET_RECENTLY_UPDATED = `
query GetRecentlyUpdated {
chapters(orderBy: FETCHED_AT, orderByType: DESC, first: 300) {
nodes {
mangaId
fetchedAt
manga { id title thumbnailUrl inLibrary }
}
}
}
`;
export const GET_CHAPTERS = `
query GetChapters($mangaId: Int!) {
chapters(condition: { mangaId: $mangaId }) {
@@ -7,4 +19,4 @@ export const GET_CHAPTERS = `
}
}
}
`;
`;