[Codegen] Request manga download count with chapter deletion mutation (#516)
After deleting a chapter, the download count of the chapters manga did not update, because the information was not requested with the mutation
This commit is contained in:
@@ -28,6 +28,10 @@ export const DELETE_DOWNLOADED_CHAPTER = gql`
|
||||
chapters {
|
||||
id
|
||||
isDownloaded
|
||||
manga {
|
||||
id
|
||||
downloadCount
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -40,6 +44,10 @@ export const DELETE_DOWNLOADED_CHAPTERS = gql`
|
||||
chapters {
|
||||
id
|
||||
isDownloaded
|
||||
manga {
|
||||
id
|
||||
downloadCount
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user