Remove "clientMutationId"

This commit is contained in:
schroda
2024-07-11 18:09:47 +02:00
parent 2f60b94a64
commit 35ee359754
14 changed files with 49 additions and 100 deletions

View File

@@ -14,7 +14,6 @@ export const CLEAR_DOWNLOADER = gql`
mutation CLEAR_DOWNLOADER($input: ClearDownloaderInput = {}) {
clearDownloader(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -25,7 +24,6 @@ export const CLEAR_DOWNLOADER = gql`
export const DELETE_DOWNLOADED_CHAPTER = gql`
mutation DELETE_DOWNLOADED_CHAPTER($input: DeleteDownloadedChapterInput!) {
deleteDownloadedChapter(input: $input) {
clientMutationId
chapters {
id
isDownloaded
@@ -41,7 +39,6 @@ export const DELETE_DOWNLOADED_CHAPTER = gql`
export const DELETE_DOWNLOADED_CHAPTERS = gql`
mutation DELETE_DOWNLOADED_CHAPTERS($input: DeleteDownloadedChaptersInput!) {
deleteDownloadedChapters(input: $input) {
clientMutationId
chapters {
id
isDownloaded
@@ -59,7 +56,6 @@ export const DEQUEUE_CHAPTER_DOWNLOAD = gql`
mutation DEQUEUE_CHAPTER_DOWNLOAD($input: DequeueChapterDownloadInput!) {
dequeueChapterDownload(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -72,7 +68,6 @@ export const DEQUEUE_CHAPTER_DOWNLOADS = gql`
mutation DEQUEUE_CHAPTER_DOWNLOADS($input: DequeueChapterDownloadsInput!) {
dequeueChapterDownloads(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -85,7 +80,6 @@ export const ENQUEUE_CHAPTER_DOWNLOAD = gql`
mutation ENQUEUE_CHAPTER_DOWNLOAD($input: EnqueueChapterDownloadInput!) {
enqueueChapterDownload(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -98,7 +92,6 @@ export const ENQUEUE_CHAPTER_DOWNLOADS = gql`
mutation ENQUEUE_CHAPTER_DOWNLOADS($input: EnqueueChapterDownloadsInput!) {
enqueueChapterDownloads(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -111,7 +104,6 @@ export const REORDER_CHAPTER_DOWNLOAD = gql`
mutation REORDER_CHAPTER_DOWNLOAD($input: ReorderChapterDownloadInput!) {
reorderChapterDownload(input: $input) {
clientMutationId
downloadStatus {
...DOWNLOAD_STATUS_FIELDS
}
@@ -122,7 +114,6 @@ export const REORDER_CHAPTER_DOWNLOAD = gql`
export const START_DOWNLOADER = gql`
mutation START_DOWNLOADER($input: StartDownloaderInput = {}) {
startDownloader(input: $input) {
clientMutationId
downloadStatus {
state
}
@@ -133,7 +124,6 @@ export const START_DOWNLOADER = gql`
export const STOP_DOWNLOADER = gql`
mutation STOP_DOWNLOADER($input: StopDownloaderInput = {}) {
stopDownloader(input: $input) {
clientMutationId
downloadStatus {
state
}