[ServerMapping][Codegen] Update to latest server gql MangaType changes (#546)

This commit is contained in:
schroda
2024-01-11 03:53:06 +01:00
committed by GitHub
parent 955cc682fd
commit 3973eda089
9 changed files with 405 additions and 28 deletions

View File

@@ -257,7 +257,6 @@ export const PARTIAL_MANGA_FIELDS = gql`
`;
export const FULL_CHAPTER_FIELDS = gql`
${PARTIAL_MANGA_FIELDS}
fragment FULL_CHAPTER_FIELDS on ChapterType {
chapterNumber
fetchedAt
@@ -268,7 +267,10 @@ export const FULL_CHAPTER_FIELDS = gql`
lastPageRead
lastReadAt
manga {
...PARTIAL_MANGA_FIELDS
id
title
inLibrary
thumbnailUrl
}
meta {
key
@@ -292,6 +294,15 @@ export const FULL_MANGA_FIELDS = gql`
lastReadChapter {
...FULL_CHAPTER_FIELDS
}
latestReadChapter {
...FULL_CHAPTER_FIELDS
}
latestFetchedChapter {
...FULL_CHAPTER_FIELDS
}
latestUploadedChapter {
...FULL_CHAPTER_FIELDS
}
}
`;