From daa74a9f14ed10453552d4cf34c84f0e9b1af7d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=CC=88rg=20Hartmann?= Date: Wed, 9 Aug 2023 11:54:38 +0200 Subject: [PATCH] [Refactoring] Updated limitation of Azure to not use more than 6 operands for tag expression chained with &&. --- microservices/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microservices/README.md b/microservices/README.md index d49ca63..d2a6a0d 100644 --- a/microservices/README.md +++ b/microservices/README.md @@ -25,7 +25,7 @@ Sending a device token to the Notification Hub is called an installation (or reg Tags can be used to send push notifications to a list of certain users: A boolean expression using tags will be evaluated by Azure. Tags can be chained to so called `tag expressions` supporting common operators like `AND (&&)`, `OR (||)`, and `NOT (!)`. -> **Limitation:** Tag expressions using only OR operators can reference 20 tags; expression with AND operators but no OR operators can reference 10 tags; otherwise, tag expressions are limited to 6 tags. +> **Limitation:** Tag expressions can contain all Boolean operators, such as AND (&&), OR (||), and NOT (!). They can also contain parentheses. Tag expressions are limited to 20 tags if they contain only ORs; otherwise they are limited to 6 tags. ###### Triggering Push Notifications