Reduce requested category data in queries
This commit is contained in:
42
src/lib/graphql/fragments/CategoryFragments.ts
Normal file
42
src/lib/graphql/fragments/CategoryFragments.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Copyright (C) Contributors to the Suwayomi project
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import gql from 'graphql-tag';
|
||||
|
||||
export const CATEGORY_BASE_FIELDS = gql`
|
||||
fragment CATEGORY_BASE_FIELDS on CategoryType {
|
||||
id
|
||||
name
|
||||
|
||||
default
|
||||
order
|
||||
}
|
||||
`;
|
||||
|
||||
export const CATEGORY_LIBRARY_FIELDS = gql`
|
||||
${CATEGORY_BASE_FIELDS}
|
||||
|
||||
fragment CATEGORY_LIBRARY_FIELDS on CategoryType {
|
||||
...CATEGORY_BASE_FIELDS
|
||||
|
||||
mangas {
|
||||
totalCount
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const CATEGORY_SETTING_FIELDS = gql`
|
||||
${CATEGORY_BASE_FIELDS}
|
||||
|
||||
fragment CATEGORY_SETTING_FIELDS on CategoryType {
|
||||
...CATEGORY_BASE_FIELDS
|
||||
|
||||
includeInUpdate
|
||||
includeInDownload
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user