• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Need Help with Notion Query a Database Action

Fagun Shah

Well-known member
Workflow - https://connect.pabbly.com/workflow/mapping/IjQxODI4NCI_3D

Pabbly Account Email - [email protected]

Notion DB Link - https://integrationlab.notion.site/integrationlab/Pabbly-93918f4d515044c6b1b4a06801f58f19

1655808181839.png
 

Hermes

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

PabblyMember3

Guest
@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:

Code:
{ "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
 
Top