> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Query Notion meeting notes

> Query meeting notes with provider filters and sorting.

`notion.queryMeetingNotes` query meeting notes with provider filters and sorting.

## Example

```ts automations/notion-query-meeting-notes.automation.ts theme={null}
import { automation, onSchedule } from "automate.ax"
import { notion } from "automate.ax/notion"

export default automation("Query Notion meeting notes", () => {
  onSchedule({ schedule: "0 9 * * *" })

  notion.queryMeetingNotes({ limit: 25 })
})
```

## Inputs

All fields are optional. Use `filter`, `sort`, and `limit`; `limit` accepts 1 through 50 and defaults according to Notion. Every input accepts a compatible signal, and an optional second argument can select a named account.

## Output

Returns `results` and `has_more`. Each result is a typed meeting-notes block.
