@@ -43,7 +43,7 @@ There is one command surface; all behavior is controlled through options.
4343` mdbasequery ` supports three ways to provide the query definition:
4444
45451 . ` .base ` file via ` --base <path> `
46- 2 . YAML via ` --yaml <string-or-path > `
46+ 2 . Inline YAML via ` --yaml <yaml-text > `
47473 . Flag-built query mode (` --filter ` , ` --select ` , ` --sort ` , etc.)
4848
4949If ` --base ` /` --yaml ` are not provided, the query is built from flags.
@@ -111,7 +111,7 @@ mdbasequery --yaml "views: [{ type: table, name: default }]" --no-strict
111111| --- | --- | --- |
112112| ` --dir <path> ` | string | Target directory to scan (default: current directory). |
113113| ` --base <path> ` | string | Path to Obsidian-style ` .base ` YAML file. |
114- | ` --yaml <string-or-path > ` | string | Inline YAML text or a path to a YAML file . |
114+ | ` --yaml <yaml-text > ` | string | Inline YAML text. |
115115| ` --view <name> ` | string | View name to run (default: first view). |
116116| `--format <json| jsonl| yaml| csv| md>` | string | Output format (default: ` json ` ). |
117117| ` --out <path> ` | string | Write serialized output to file instead of stdout. |
@@ -206,7 +206,7 @@ Runtime adapters:
206206
207207- ` spec?: QuerySpec ` - already parsed query spec.
208208- ` basePath?: string ` - path to ` .base ` file.
209- - ` yaml?: string ` - inline YAML or YAML path .
209+ - ` yaml?: string ` - inline YAML text .
210210- ` view?: string ` - selected view name.
211211- ` dir?: string ` - vault root directory.
212212- ` strict?: boolean ` - strict symbol/function behavior (default true).
0 commit comments