From 292ea26c55dfdebee5b2e2ba7dc502252f29f887 Mon Sep 17 00:00:00 2001 From: Josh Calder Date: Thu, 26 Aug 2021 08:16:44 +1000 Subject: [PATCH] fix List Items API link on new-graphql-api page (#6404) --- docs/pages/updates/new-graphql-api.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/updates/new-graphql-api.mdx b/docs/pages/updates/new-graphql-api.mdx index bb1b40223af..aac4440fd5c 100644 --- a/docs/pages/updates/new-graphql-api.mdx +++ b/docs/pages/updates/new-graphql-api.mdx @@ -396,7 +396,7 @@ While there are a lot of changes to this API, we've put a lot of effort into mak 3. Update mutation arguments to match the new input types. Make sure you replace `{ id: "..."}` with `{where: { id: "..."} }` in your `update` and `delete` operations. 4. Update relationship inputs to `create` and `update` operations. Ensure you've replaced usage of `{ disconnectAll: true }` with `{ set: [] }` in to-many relationships, and have used `{ disconnect: true }` rather than `{ disconnect: { id: "..."} }` in to-one relationships. -!> Finally, make sure you apply corresponding changes to filters and input arguments when using the [List Items API](docs/apis/list-items). +!> Finally, make sure you apply corresponding changes to filters and input arguments when using the [List Items API](/docs/apis/list-items). ---