Notion
notion_query_data_source
Query pages in a data source with filters and sorts. For new API (2025-09-03). For legacy databases use notion_query_database.
Remote node2flow/notion
Other tools also called notion_query_data_source?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sorts": {
"type": "array",
"description": "Sorts: [{ \"property\": \"Created\", \"direction\": \"descending\" }]"
},
"filter": {
"type": "object",
"description": "Filter: { \"property\": \"Status\", \"select\": { \"equals\": \"Done\" } }"
},
"page_size": {
"type": "number",
"description": "Results per page (max 100)"
},
"start_cursor": {
"type": "string",
"description": "Pagination cursor"
},
"data_source_id": {
"type": "string",
"description": "Data source ID to query"
}
}
}