[FA-misc] Add delete button
Some checks failed
CI / build-backend (pull_request) Successful in 2m35s
CI / build-frontend (pull_request) Failing after 27s

This commit is contained in:
gamer147
2025-12-11 15:00:55 -05:00
parent bbc0b5ec7d
commit 02525d611a
5 changed files with 199 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
mutation DeleteNovel($input: DeleteNovelInput!) {
deleteNovel(input: $input) {
boolean
errors {
... on Error {
message
}
}
}
}