From 644a66926839e26bb881c7f609a229f7fa89e394 Mon Sep 17 00:00:00 2001 From: Tim Schmelter Date: Wed, 18 Dec 2024 14:22:05 -0800 Subject: [PATCH] Fix directive format Co-authored-by: Rene Brandel <4989523+renebrandel@users.noreply.github.com> --- .../graphqlapi/customize-authorization-rules/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/gen1/[platform]/build-a-backend/graphqlapi/customize-authorization-rules/index.mdx b/src/pages/gen1/[platform]/build-a-backend/graphqlapi/customize-authorization-rules/index.mdx index d6146f09d03..cce6a690e1f 100644 --- a/src/pages/gen1/[platform]/build-a-backend/graphqlapi/customize-authorization-rules/index.mdx +++ b/src/pages/gen1/[platform]/build-a-backend/graphqlapi/customize-authorization-rules/index.mdx @@ -910,7 +910,7 @@ type PostTags } ``` -For more control over the join table's authorization rules, you can create the join table explicitly, linking it to each model with a `hasMany/belongsTo` relationship, and set appropriate auth rules for your application. +For more control over the join table's authorization rules, you can create the join table explicitly, linking it to each model with a `@hasMany`/`@belongsTo` relationship, and set appropriate auth rules for your application. ### How it works