Add missing chapter fields to update subscription

This commit is contained in:
schroda
2024-07-09 01:16:51 +02:00
parent b70c404fb1
commit 205c833b19
2 changed files with 26 additions and 3 deletions

View File

@@ -29,6 +29,29 @@ export const UPDATER_SUBSCRIPTION_FIELDS = gql`
totalCount
nodes {
...MANGA_CHAPTER_STAT_FIELDS
firstUnreadChapter {
id
sourceOrder
}
lastReadChapter {
id
sourceOrder
lastReadAt
}
latestReadChapter {
id
sourceOrder
lastReadAt
}
latestFetchedChapter {
id
fetchedAt
}
latestUploadedChapter {
id
uploadDate
}
}
}
}