2023-07-09 00:06:52 +02:00
|
|
|
/*
|
|
|
|
|
* 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 type { CodegenConfig } from '@graphql-codegen/cli';
|
|
|
|
|
|
|
|
|
|
const config: CodegenConfig = {
|
|
|
|
|
overwrite: true,
|
2024-06-14 19:54:26 +02:00
|
|
|
schema: 'http://localhost:4567/api/graphql',
|
2023-07-09 00:06:52 +02:00
|
|
|
documents: [
|
|
|
|
|
'src/lib/graphql/queries/**',
|
|
|
|
|
'src/lib/graphql/mutations/**',
|
|
|
|
|
'src/lib/graphql/subscriptions/**',
|
2024-07-01 21:40:27 +02:00
|
|
|
'src/lib/graphql/fragments/**',
|
2023-07-09 00:06:52 +02:00
|
|
|
'src/lib/graphql/Fragments.ts',
|
|
|
|
|
],
|
|
|
|
|
ignoreNoDocuments: true,
|
|
|
|
|
generates: {
|
|
|
|
|
'src/lib/graphql/generated/graphql.ts': {
|
|
|
|
|
plugins: ['typescript', 'typescript-operations'],
|
|
|
|
|
config: {
|
|
|
|
|
namingConvention: {
|
|
|
|
|
typeNames: 'change-case-all#pascalCase',
|
|
|
|
|
transformUnderscore: true,
|
|
|
|
|
},
|
2024-03-28 17:30:34 +01:00
|
|
|
scalars: {
|
|
|
|
|
LongString: 'string',
|
|
|
|
|
Cursor: 'string',
|
|
|
|
|
},
|
2023-07-09 00:06:52 +02:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
'src/lib/graphql/generated/apollo-helpers.ts': {
|
|
|
|
|
plugins: ['typescript-apollo-client-helpers'],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-01 21:40:27 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2023-07-09 00:06:52 +02:00
|
|
|
export default config;
|