내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
해결됨

Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator?

Avatar

Level 3

Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator?

I'm getting errors when testing this (or it just doesn't work).  The API Basics page doesn't discuss this.

Thanks in advance!

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

Hello,

To achieve this in Fusion you can use e.g. a search module.

lgaertner_0-1699600181817.png

Important is to put all search keywords into an array.

 

If you prefer a direct API call, it would look like this:

{
    "fields": "*",
    "$$LIMIT": 200,
    "name": [
        "keyword1",
        "keyword2"
    ],
    "name_Mod": "in"
}

 

Regards

Lars

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Level 10

Hello,

To achieve this in Fusion you can use e.g. a search module.

lgaertner_0-1699600181817.png

Important is to put all search keywords into an array.

 

If you prefer a direct API call, it would look like this:

{
    "fields": "*",
    "$$LIMIT": 200,
    "name": [
        "keyword1",
        "keyword2"
    ],
    "name_Mod": "in"
}

 

Regards

Lars

Avatar

Level 3

Lars,

 

You ROCK!

 

Thank you so much!