Is Enhanced Filters Limits modification Possible in AppSync?

0

I am using enhanced filters in Appsync subscription, I had a usecase that I need to provide more than 5 item in the list for in operator in Filters. Is the any way that I can modify the limits ?

demandé il y a 2 ans293 vues
1 réponse
0

Hello,

Unfortunately, currently we are not supporting limit increase for enhanced filters.

However, as a workaround, you can use OR functionality to overcome the 5 element restriction on in operator. For example:

{
    "filterGroup": [
        {
           "filters" : [
                 {
                    "fieldName" : "severity",
                    "operator" : "in",
                    "value" : [1, 2, 3, 4, 5]
                }
           ]
           
        },
         {
           "filters" : [
                 {
                    "fieldName" : "severity",
                    "operator" : "in",
                    "value" : [6, 7, 8, 9, 10]
                }
           ]
           
        },

    ]
}

This is also mentioned on our AWS Doc under the section - "Note that there are several restrictions for using filters:" which I am adding here for your reference.

https://docs.aws.amazon.com/appsync/latest/devguide/extensions.html

profile pictureAWS
INGÉNIEUR EN ASSISTANCE TECHNIQUE
Yash_C
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions