From f16fc4c7973a7d51689151539db363bd3d03faba Mon Sep 17 00:00:00 2001 From: Kyohei Nakamori Date: Thu, 22 Dec 2022 00:37:26 +0900 Subject: [PATCH] Fix the changeset --- .changeset/short-toes-relax.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/short-toes-relax.md b/.changeset/short-toes-relax.md index ac835119187..50cbf77c202 100644 --- a/.changeset/short-toes-relax.md +++ b/.changeset/short-toes-relax.md @@ -10,7 +10,7 @@ Add a feature to transform documents. Plugin will have the following functions: -```my-plugin.js +```js module.exports = { plugin: () => { return 'hello' @@ -46,7 +46,7 @@ export default config For example, to remove a `@localOnlyDirective` directive from documents: -```my-plugin.js +```js const { visit, print } = require('graphql') module.exports = {