How do I view a list of untagged notes (and create other dynamic filters)?
With the Folders extension, you can create "smart tags" that organize your notes according to pre-defined filters.
For example, suppose you wanted to see a list of all notes that do not have a tag associated with them. You can do this by creating a smart tag.
Creating A Smart Tag
- Activate the Folders extension.
- Within the Folders extension, click on Views, then press the + button.
- Copy and paste the follow smart tag syntax:
!["Untagged", "tags.length", "=", 0]
- Press enter on your keyboard.
At this point, you should see an item called "Untagged" under "Views". You can select this item to view a list of your untagged notes.
Understanding The Smart Tag Syntax
Smart tags can be used to construct any kind of simple query. The components of the smart tag syntax are as follows:
!: Indicates the start of a smart tag
[...]: A JSON array
- The first item in the JSON array is the display label.
- The second item is the note property you are targeting.
- The third is the comparison operator.
- And the last is the expected value.
More Examples
Show all notes that have tags that start with the letter b.
!["B-tags", "tags", "includes", ["title", "startsWith", "b"]]
Show all notes whose title starts with Foo.
!["Foo Notes", "title", "startsWith", "Foo"]
Show notes that are pinned.
!["Pinned", "pinned", "=", true]
Show notes that are not pinned.
!["Not Pinned", "pinned", "=", false]
Show notes that have been updated within the last day.
!["Last Day", "updated_at", ">", "1.days.ago"]
Show notes whose text has more than 500 characters.
!["Long", "text.length", ">", 500]
Compound Predicates
You can use compound and/or predicates to combine multiple queries. For example, to get all notes that are pinned and locked:
!["Pinned & Locked", "ignored", "and", [["pinned", "=", true], ["locked", "=", true]]]
To get all notes that are protected or pinned:
!["Protected or Pinned", "ignored", "or", [["content.protected", "=", true], ["pinned", "=", true]]]
Attributes
Here are a list of note attributes that can be queried:
- title
- title.length
- text
- text.length
- tags
- updated_at
- created_at
- pinned
- content.protected
If constructing a filter that queries tags, you can use the following tag attributes:
- title
- title.length
- updated_at
- created_at
Note that smart tags always query notes, and so the query you're building refers to notes firstmost. You reference tags by referring to a note's tags:
!["B-tags", "tags", "includes", ["title", "startsWith", "b"]]
Get all notes whose tags includes a title that starts with the letter b.
Operators
Here are a list of operators that can be used to construct filters. The operator is typically the third parameter in the filter syntax.
- =
- >
- <
- >=
- <=
- startsWith
- in ("whether a value is in a list of values")
- includes ("includes sub filter")
- matches (regex pattern)
- and (for compound filters)
- or (for compound filters)
Need help?
Visit our dedicated forum thread on smart tags for help with constructing your own custom queries.
More from Usage
- What are editors?
- How do I create and import backups of my Standard Notes data?
- How do I delete a note?
- How do I delete a tag?
- How do I share a private note?
- How do I use Markdown in my notes?
- How do I clear duplicates?
- How do I enable spellcheck?
- How do I print a note?
- How do I make an editor my default editor?
- How do I search inside a note?
- How do I add images to my notes?
- How do I uninstall Standard Notes?
- How do I link multiple notes together to create a sort of personal wiki?
- What does it mean to lock or protect a note?
- How can I optimize the performance of Standard Notes?