Skip to content

Data Source: Vault Data

You can query your vault data. These tables are automatically created when you install SQLSeal and are available from any SQLSeal codeblock globally. They update automatically on file changes.

Example Usage

Query below fetches last 10 modified files in your vault.

SELECT *
FROM files
ORDER BY modified_at DESC
LIMIT 10

Table Structure

files table

Files table consists of the following columns:

ColumnDescriptionIntroduced In
idFile Path
pathSame as id, file path
nameName of the file, without path and extension
created_atTime of creation (ISO 8601). You can use it to order files by their creation date. Before version 0.22.0 value was unixepoch * 1000 (JavaScript epoch)0.18.1
modified_atTime of last modification (ISO 8601). You can use it to odrer files by their modification. Before version 0.22.0 value was unixepoch * 1000 (JavaScript epoch)0.18.1
file_sizeSize of the file on disk (in bytes)0.18.1
All file propertiesAll file properties are also added to the table. All the special characters will be transformed to underscores _, so for example note type will be accessible as note_type

Note: Tags data can exist in two contexts - as file metadata here or as an entry in the tags table. Details here

tags table

Tags table consists of the following columns:

ColumnDescriptionIntroduced In
tagFull tag, including # symbol. For example #todo
pathFull path of the file the tag belongs to0.24.1
fileId(deprecated) same like path. Name changed for compatibility with other tables. Will get removed in the future versions

Note: Tags data can in two contexts - as file metadata or as an entry in this tags table. Details here

tasks table

Tasks table consists of the following columns:

ColumnDescriptionIntroduced In
taskContent of the task (text)
completed0 if not completed, 1 if completed
pathFull path of the file the tag belongs to0.24.1
filePath(deprecated) same like path. Name changed for compatibility with other tables. Will get removed in the future versions
checkboxInteractive checkbox for the task that can be clicked to toggle completion state0.29.0
positionLine number where the task appears in the original file0.29.0
headingThe name of the heading this task appears under (if any)0.30.0
heading_levelThe level of the heading this task appears under (if any), i.e., the number of # in the heading declaration0.30.0

Table containing all the links between files.

Introduced in 0.20.0

ColumnDescription
pathFull path of the source of the link
targetFull path of the target of the link
positionJSON object containing information about location of the link
display_textText displayed on the page for that link
target_existsinformation if the target file exists. 1 if it exists, 0 otherwise

Links that appear in a file's frontmatter (Obsidian properties) contain a frontmatterKey property in the position JSON object. This can be used to identify links that are in the note body or within a specific frontmatter property.

For instance, to query all links to the current file that appear in the body of a note:

sql
SELECT * FROM links
WHERE target = @path
AND json_extract(position, '$.frontmatterKey') IS NULL

frontmatterKey can be used to select links within a specific property. A Map of Content, for instance, may wish to show a list of files that list the MOC as a type:

sql
LIST
SELECT a(path) FROM links
WHERE target = @path
AND json_extract(position, '$.frontmatterKey') = 'type'