Resolve Alias
resolve_aliasResolve a note's actual path from its alias or display name by searching frontmatter aliases and filename. Use to convert human-friendly titles to note paths for further operations.
Instructions
Find every note whose frontmatter aliases: field contains the given name (case-insensitive). With includeBasename: true, also matches notes whose filename (without .md) equals the name — Obsidian's resolution fallback when no alias matches. Use to translate a human-friendly title like 'My Project' into the actual note path before calling get_note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Alias or display name to resolve, e.g. 'My Project'. | |
| includeBasename | No | If true (default), also match notes whose filename (without extension) equals `name`. |