From a9f6ceb4433a15a6836701e68550094bea58bd18 Mon Sep 17 00:00:00 2001 From: Christopher Sundersingh Date: Wed, 29 May 2024 12:10:50 -0700 Subject: [PATCH 1/2] docs(api): add auth limition on custom types --- .../build-a-backend/data/customize-authz/index.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx b/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx index 63c53d6d369..bc03c85a5e1 100644 --- a/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx +++ b/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx @@ -218,6 +218,12 @@ do { + + +**Note**: Authorization rules are supported on data models (model-level and field-level) and custom operations (queries, mutations and subscriptions). They are not fully supported on custom types. + + + ## Learn more about specific authorization strategies From 4fb9e726c3ab5526c5decb28ccaf61cfc445f69d Mon Sep 17 00:00:00 2001 From: Christopher Sundersingh Date: Wed, 29 May 2024 13:01:41 -0700 Subject: [PATCH 2/2] address review comments --- .../[platform]/build-a-backend/data/customize-authz/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx b/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx index bc03c85a5e1..947ce934a85 100644 --- a/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx +++ b/src/pages/[platform]/build-a-backend/data/customize-authz/index.mdx @@ -220,7 +220,7 @@ do { -**Note**: Authorization rules are supported on data models (model-level and field-level) and custom operations (queries, mutations and subscriptions). They are not fully supported on custom types. +**Note**: Authorization rules are only supported on data models (model-level and field-level) and custom operations (queries, mutations and subscriptions). They are not fully supported on custom types.