Skip to content

Commit c997240

Browse files
committedMar 2, 2023
fix(writers): correctly provide all query mutators
1 parent 5ace2d2 commit c997240

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/core/src/writers/target-tags.ts

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const generateTargetTags = (
2727
imports: operation.imports,
2828
importsMSW: operation.importsMSW,
2929
mutators: operation.mutator ? [operation.mutator] : [],
30+
clientMutators: operation.clientMutators ?? [],
3031
formData: operation.formData ? [operation.formData] : [],
3132
formUrlEncoded: operation.formUrlEncoded
3233
? [operation.formUrlEncoded]

1 commit comments

Comments
 (1)

vercel[bot] commented on Mar 2, 2023

@vercel[bot]
Please sign in to comment.