From 1c745355be25e7fa10049247385f9f55a119fffa Mon Sep 17 00:00:00 2001 From: Kye Russell Date: Mon, 9 Dec 2024 01:22:46 +0800 Subject: [PATCH] Improved language in mutations docs (#668) --- docs/guide/mutations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/mutations.md b/docs/guide/mutations.md index 3506de12..ce4e4dcf 100644 --- a/docs/guide/mutations.md +++ b/docs/guide/mutations.md @@ -146,7 +146,7 @@ Some things to note here: - Take note that inputs using `partial` will _not_ automatically mark non-auto fields optional and instead will respect explicit type annotations; see [partial input types](./types.md#input-types) documentation for examples. -- I's also possible to update or delete model by using unique identifier other than id by providing `key_attr` property : +- It's also possible to update or delete a model using a unique identifier other than `id` by passing a `key_attr` argument: ```python @strawberry_django.partial(SomeModel)