From bee18529aa74c1d8f4567922449ec3124b4a3b5a Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 19 Feb 2026 13:42:00 +0300 Subject: [PATCH] Fix docs link in mutation classes guide --- guides/mutations/mutation_classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/mutations/mutation_classes.md b/guides/mutations/mutation_classes.md index 57eaee6d9a..266188540e 100644 --- a/guides/mutations/mutation_classes.md +++ b/guides/mutations/mutation_classes.md @@ -118,7 +118,7 @@ class Mutations::AddStar < Mutations::BaseMutation end ``` -By specifying that the `post_id` argument loads a `Types::Post` object type, a `Post` object will be loaded via {% internal_link "`Schema#object_from_id`", "/schema/definition.html#object-identification-hooks" %} with the provided `post_id`. +By specifying that the `post_id` argument loads a `Types::Post` object type, a `Post` object will be loaded via {% internal_link "`Schema#object_from_id`", "/schema/definition.html#object-identification" %} with the provided `post_id`. All arguments that end in `_id` and use the `loads:` method will have their `_id` suffix removed. For example, the mutation resolver above receives a `post` argument which contains the loaded object, instead of a `post_id` argument.