Remove "clientMutationId"
This commit is contained in:
@@ -11,7 +11,6 @@ import gql from 'graphql-tag';
|
||||
export const CREATE_BACKUP = gql`
|
||||
mutation CREATE_BACKUP($input: CreateBackupInput!) {
|
||||
createBackup(input: $input) {
|
||||
clientMutationId
|
||||
url
|
||||
}
|
||||
}
|
||||
@@ -20,7 +19,6 @@ export const CREATE_BACKUP = gql`
|
||||
export const RESTORE_BACKUP = gql`
|
||||
mutation RESTORE_BACKUP($backup: Upload!) {
|
||||
restoreBackup(input: { backup: $backup }) {
|
||||
clientMutationId
|
||||
id
|
||||
status {
|
||||
mangaProgress
|
||||
|
||||
@@ -13,7 +13,6 @@ export const CREATE_CATEGORY = gql`
|
||||
${CATEGORY_SETTING_FIELDS}
|
||||
mutation CREATE_CATEGORY($input: CreateCategoryInput!) {
|
||||
createCategory(input: $input) {
|
||||
clientMutationId
|
||||
category {
|
||||
...CATEGORY_SETTING_FIELDS
|
||||
}
|
||||
@@ -24,7 +23,6 @@ export const CREATE_CATEGORY = gql`
|
||||
export const DELETE_CATEGORY = gql`
|
||||
mutation DELETE_CATEGORY($input: DeleteCategoryInput!) {
|
||||
deleteCategory(input: $input) {
|
||||
clientMutationId
|
||||
category {
|
||||
id
|
||||
}
|
||||
@@ -35,7 +33,6 @@ export const DELETE_CATEGORY = gql`
|
||||
export const DELETE_CATEGORY_METADATA = gql`
|
||||
mutation DELETE_CATEGORY_METADATA($input: DeleteCategoryMetaInput!) {
|
||||
deleteCategoryMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
}
|
||||
@@ -53,7 +50,6 @@ export const DELETE_CATEGORY_METADATA = gql`
|
||||
export const SET_CATEGORY_METADATA = gql`
|
||||
mutation SET_CATEGORY_METADATA($input: SetCategoryMetaInput!) {
|
||||
setCategoryMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
@@ -78,7 +74,6 @@ export const UPDATE_CATEGORY = gql`
|
||||
$getName: Boolean!
|
||||
) {
|
||||
updateCategory(input: $input) {
|
||||
clientMutationId
|
||||
category {
|
||||
id
|
||||
default @include(if: $getDefault)
|
||||
@@ -99,7 +94,6 @@ export const UPDATE_CATEGORIES = gql`
|
||||
$getName: Boolean!
|
||||
) {
|
||||
updateCategories(input: $input) {
|
||||
clientMutationId
|
||||
categories {
|
||||
id
|
||||
default @include(if: $getDefault)
|
||||
@@ -114,7 +108,6 @@ export const UPDATE_CATEGORIES = gql`
|
||||
export const UPDATE_CATEGORY_ORDER = gql`
|
||||
mutation UPDATE_CATEGORY_ORDER($input: UpdateCategoryOrderInput!) {
|
||||
updateCategoryOrder(input: $input) {
|
||||
clientMutationId
|
||||
categories {
|
||||
id
|
||||
order
|
||||
|
||||
@@ -13,7 +13,6 @@ import { TRACK_RECORD_BIND_FIELDS } from '@/lib/graphql/fragments/TrackRecordFra
|
||||
export const DELETE_CHAPTER_METADATA = gql`
|
||||
mutation DELETE_CHAPTER_METADATA($input: DeleteChapterMetaInput!) {
|
||||
deleteChapterMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
@@ -40,7 +39,6 @@ export const DELETE_CHAPTER_METADATA = gql`
|
||||
export const GET_CHAPTER_PAGES_FETCH = gql`
|
||||
mutation GET_CHAPTER_PAGES_FETCH($input: FetchChapterPagesInput!) {
|
||||
fetchChapterPages(input: $input) {
|
||||
clientMutationId
|
||||
chapter {
|
||||
id
|
||||
pageCount
|
||||
@@ -56,7 +54,6 @@ export const GET_MANGA_CHAPTERS_FETCH = gql`
|
||||
|
||||
mutation GET_MANGA_CHAPTERS_FETCH($input: FetchChaptersInput!) {
|
||||
fetchChapters(input: $input) {
|
||||
clientMutationId
|
||||
chapters {
|
||||
...CHAPTER_LIST_FIELDS
|
||||
manga {
|
||||
@@ -73,7 +70,6 @@ export const GET_MANGA_CHAPTERS_FETCH = gql`
|
||||
export const SET_CHAPTER_METADATA = gql`
|
||||
mutation SET_CHAPTER_METADATA($input: SetChapterMetaInput!) {
|
||||
setChapterMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
@@ -103,7 +99,6 @@ export const UPDATE_CHAPTER = gql`
|
||||
$trackProgress: Boolean!
|
||||
) {
|
||||
updateChapter(input: $input) {
|
||||
clientMutationId
|
||||
chapter {
|
||||
id
|
||||
isBookmarked @include(if: $getBookmarked)
|
||||
@@ -130,7 +125,6 @@ export const UPDATE_CHAPTER = gql`
|
||||
}
|
||||
}
|
||||
deleteDownloadedChapter(input: { id: $chapterIdToDelete }) @include(if: $deleteChapter) {
|
||||
clientMutationId
|
||||
chapters {
|
||||
id
|
||||
isDownloaded
|
||||
@@ -162,7 +156,6 @@ export const UPDATE_CHAPTERS = gql`
|
||||
$trackProgress: Boolean!
|
||||
) {
|
||||
updateChapters(input: $input) {
|
||||
clientMutationId
|
||||
chapters {
|
||||
id
|
||||
isBookmarked @include(if: $getBookmarked)
|
||||
@@ -189,7 +182,6 @@ export const UPDATE_CHAPTERS = gql`
|
||||
}
|
||||
}
|
||||
deleteDownloadedChapters(input: { ids: $chapterIdsToDelete }) @include(if: $deleteChapters) {
|
||||
clientMutationId
|
||||
chapters {
|
||||
id
|
||||
isDownloaded
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ export const GET_EXTENSIONS_FETCH = gql`
|
||||
|
||||
mutation GET_EXTENSIONS_FETCH($input: FetchExtensionsInput = {}) {
|
||||
fetchExtensions(input: $input) {
|
||||
clientMutationId
|
||||
extensions {
|
||||
...EXTENSION_LIST_FIELDS
|
||||
}
|
||||
@@ -28,7 +27,6 @@ export const UPDATE_EXTENSION = gql`
|
||||
|
||||
mutation UPDATE_EXTENSION($input: UpdateExtensionInput!) {
|
||||
updateExtension(input: $input) {
|
||||
clientMutationId
|
||||
extension {
|
||||
...EXTENSION_LIST_FIELDS
|
||||
}
|
||||
@@ -41,7 +39,6 @@ export const UPDATE_EXTENSIONS = gql`
|
||||
|
||||
mutation UPDATE_EXTENSIONS($input: UpdateExtensionsInput!) {
|
||||
updateExtensions(input: $input) {
|
||||
clientMutationId
|
||||
extensions {
|
||||
...EXTENSION_LIST_FIELDS
|
||||
}
|
||||
@@ -54,7 +51,6 @@ export const INSTALL_EXTERNAL_EXTENSION = gql`
|
||||
|
||||
mutation INSTALL_EXTERNAL_EXTENSION($file: Upload!) {
|
||||
installExternalExtension(input: { extensionFile: $file }) {
|
||||
clientMutationId
|
||||
extension {
|
||||
...EXTENSION_LIST_FIELDS
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ export const DELETE_GLOBAL_METADATA = gql`
|
||||
${GLOBAL_METADATA}
|
||||
mutation DELETE_GLOBAL_METADATA($input: DeleteGlobalMetaInput!) {
|
||||
deleteGlobalMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
...GLOBAL_METADATA
|
||||
}
|
||||
@@ -25,7 +24,6 @@ export const SET_GLOBAL_METADATA = gql`
|
||||
${GLOBAL_METADATA}
|
||||
mutation SET_GLOBAL_METADATA($input: SetGlobalMetaInput!) {
|
||||
setGlobalMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
...GLOBAL_METADATA
|
||||
}
|
||||
|
||||
@@ -11,7 +11,6 @@ import gql from 'graphql-tag';
|
||||
export const CLEAR_SERVER_CACHE = gql`
|
||||
mutation CLEAR_SERVER_CACHE($input: ClearCachedImagesInput!) {
|
||||
clearCachedImages(input: $input) {
|
||||
clientMutationId
|
||||
cachedPages
|
||||
cachedThumbnails
|
||||
downloadedThumbnails
|
||||
|
||||
@@ -12,7 +12,6 @@ import { MANGA_SCREEN_FIELDS } from '@/lib/graphql/fragments/MangaFragments.ts';
|
||||
export const DELETE_MANGA_METADATA = gql`
|
||||
mutation DELETE_MANGA_METADATA($input: DeleteMangaMetaInput!) {
|
||||
deleteMangaMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
@@ -41,7 +40,6 @@ export const GET_MANGA_FETCH = gql`
|
||||
|
||||
mutation GET_MANGA_FETCH($input: FetchMangaInput!) {
|
||||
fetchManga(input: $input) {
|
||||
clientMutationId
|
||||
manga {
|
||||
...MANGA_SCREEN_FIELDS
|
||||
}
|
||||
@@ -58,7 +56,6 @@ export const GET_MANGA_TO_MIGRATE_TO_FETCH = gql`
|
||||
$migrateTracking: Boolean!
|
||||
) {
|
||||
fetchManga(input: { id: $id }) {
|
||||
clientMutationId
|
||||
manga {
|
||||
id
|
||||
title
|
||||
@@ -95,7 +92,6 @@ export const GET_MANGA_TO_MIGRATE_TO_FETCH = gql`
|
||||
export const SET_MANGA_METADATA = gql`
|
||||
mutation SET_MANGA_METADATA($input: SetMangaMetaInput!) {
|
||||
setMangaMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
@@ -118,7 +114,6 @@ export const UPDATE_MANGA = gql`
|
||||
$updateCategories: Boolean!
|
||||
) {
|
||||
updateManga(input: $input) {
|
||||
clientMutationId
|
||||
manga {
|
||||
id
|
||||
inLibrary
|
||||
@@ -149,7 +144,6 @@ export const UPDATE_MANGAS = gql`
|
||||
$updateCategories: Boolean!
|
||||
) {
|
||||
updateMangas(input: $input) {
|
||||
clientMutationId
|
||||
mangas {
|
||||
id
|
||||
inLibrary
|
||||
@@ -185,7 +179,6 @@ export const UPDATE_MANGAS = gql`
|
||||
export const UPDATE_MANGA_CATEGORIES = gql`
|
||||
mutation UPDATE_MANGA_CATEGORIES($input: UpdateMangaCategoriesInput!) {
|
||||
updateMangaCategories(input: $input) {
|
||||
clientMutationId
|
||||
manga {
|
||||
id
|
||||
categories {
|
||||
@@ -205,7 +198,6 @@ export const UPDATE_MANGA_CATEGORIES = gql`
|
||||
export const UPDATE_MANGAS_CATEGORIES = gql`
|
||||
mutation UPDATE_MANGAS_CATEGORIES($input: UpdateMangasCategoriesInput!) {
|
||||
updateMangasCategories(input: $input) {
|
||||
clientMutationId
|
||||
mangas {
|
||||
id
|
||||
categories {
|
||||
|
||||
@@ -13,7 +13,6 @@ export const UPDATE_WEBUI = gql`
|
||||
${WEBUI_UPDATE_STATUS}
|
||||
mutation UPDATE_WEBUI($input: WebUIUpdateInput = {}) {
|
||||
updateWebUI(input: $input) {
|
||||
clientMutationId
|
||||
updateStatus {
|
||||
...WEBUI_UPDATE_STATUS
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ export const RESET_SERVER_SETTINGS = gql`
|
||||
${SERVER_SETTINGS}
|
||||
mutation RESET_SERVER_SETTINGS($input: ResetSettingsInput!) {
|
||||
resetSettings(input: $input) {
|
||||
clientMutationId
|
||||
settings {
|
||||
...SERVER_SETTINGS
|
||||
}
|
||||
@@ -25,7 +24,6 @@ export const UPDATE_SERVER_SETTINGS = gql`
|
||||
${SERVER_SETTINGS}
|
||||
mutation UPDATE_SERVER_SETTINGS($input: SetSettingsInput!) {
|
||||
setSettings(input: $input) {
|
||||
clientMutationId
|
||||
settings {
|
||||
...SERVER_SETTINGS
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ export const GET_SOURCE_MANGAS_FETCH = gql`
|
||||
|
||||
mutation GET_SOURCE_MANGAS_FETCH($input: FetchSourceMangaInput!) {
|
||||
fetchSourceManga(input: $input) {
|
||||
clientMutationId
|
||||
hasNextPage
|
||||
mangas {
|
||||
...MANGA_BASE_FIELDS
|
||||
@@ -29,7 +28,6 @@ export const UPDATE_SOURCE_PREFERENCES = gql`
|
||||
|
||||
mutation UPDATE_SOURCE_PREFERENCES($input: UpdateSourcePreferenceInput!) {
|
||||
updateSourcePreference(input: $input) {
|
||||
clientMutationId
|
||||
source {
|
||||
...SOURCE_SETTING_FIELDS
|
||||
}
|
||||
@@ -40,7 +38,6 @@ export const UPDATE_SOURCE_PREFERENCES = gql`
|
||||
export const SET_SOURCE_METADATA = gql`
|
||||
mutation SET_SOURCE_METADATA($input: SetSourceMetaInput!) {
|
||||
setSourceMeta(input: $input) {
|
||||
clientMutationId
|
||||
meta {
|
||||
key
|
||||
value
|
||||
|
||||
@@ -40,7 +40,6 @@ export const TRACKER_LOGOUT = gql`
|
||||
|
||||
mutation TRACKER_LOGOUT($trackerId: Int!) {
|
||||
logoutTracker(input: { trackerId: $trackerId }) {
|
||||
clientMutationId
|
||||
tracker {
|
||||
...TRACKER_SETTING_FIELDS
|
||||
}
|
||||
|
||||
@@ -14,7 +14,6 @@ export const UPDATE_CATEGORY_MANGAS = gql`
|
||||
|
||||
mutation UPDATE_CATEGORY_MANGAS($input: UpdateCategoryMangaInput!) {
|
||||
updateCategoryManga(input: $input) {
|
||||
clientMutationId
|
||||
updateStatus {
|
||||
...UPDATER_START_STOP_FIELDS
|
||||
}
|
||||
@@ -27,7 +26,6 @@ export const UPDATE_LIBRARY_MANGAS = gql`
|
||||
|
||||
mutation UPDATE_LIBRARY_MANGAS($input: UpdateLibraryMangaInput = {}) {
|
||||
updateLibraryManga(input: $input) {
|
||||
clientMutationId
|
||||
updateStatus {
|
||||
...UPDATER_START_STOP_FIELDS
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user