Obsidian_properties

An Obsidian page can have properties. You can set the properties by typing --- at the top of a note. You can also use the command Add File property (show commands Ctrl-p ).

I have hotkey Ctrl-Shift+, bound to Add File property.

Let’s say we have a property on some pages. That property is called points and can be an integer between 0-10. We want to create a Base that list all pages that has this property at a value above 5.

    ```base
    views:
      - type: table
        name: Table
        filters:
          and:
            - file.hasProperty("points")
            - points > 5
        order:
          - points
          - file.name
        sort:
          - property: points
            direction: DESC
    ```