Need Help with Notion Query a Database Action

Status: Closed · Asked by Fagun Shah on · 0 views

Hermes — Reply ·

{ "and": [{ "property":"Subject", "rich_text": {"contains":"Subject" }}, { "property":"Marks", "number": { "greater_than":200} }] }

Best regards,
[EMAIL='[email hidden]']Hermes[/EMAIL]
Connect with me on LinkedIn
PabblyMember3 — Reply ·

@Fagun Shah we have checked your workflow and found that the filter condition was wrong that you were trying.

Here is the correct filter condition:

{ "or": [ { "property": "Subject", "rich_text": { "contains": "Subject" } }, { "and": [ { "property": "Marks", "number": { "greater_than": 200 } }, { "property": "Marks", "number": { "less_than": 300 } } ] } ] }

Note: "contains" will not work on numbers you can use greater_than or less_than instead.

We have also created a workflow in your account with above filter condition which is working fine: https://connect.pabbly.com/workflow/mapping/IjQxODUwNSI_3D

Back to all forum threads · Log in to reply