Skip to content

Commit b8b7d12

Browse files
authored
Tighter integration with persisted queries and GraphQL Codegen (#414)
1 parent c43f485 commit b8b7d12

File tree

6 files changed

+14185
-7390
lines changed

6 files changed

+14185
-7390
lines changed

.changeset/beige-pans-impress.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
"@apollo/generate-persisted-query-manifest": minor
3+
---
4+
5+
Add ability to parse documents generated by GraphQL Codegen's [persisted documents](https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#persisted-documents) feature.
6+
7+
```ts
8+
// persisted-query-manifest.config.ts
9+
import { fromGraphQLCodegenPersistedDocuments } from '@apollo/generate-persisted-query-manifest';
10+
11+
const config = {
12+
documents: fromGraphQLCodegenPersistedDocuments('./path/to/persisted-documents.json')
13+
};
14+
15+
export default config;
16+
```

0 commit comments

Comments
 (0)