본문 바로가기
Research/Obsidian

Obsidian_dataview_쿼리

by RIEM 2023. 12. 21.

특정 헤더의 리스트를 가져오고 싶을 때

 

# My note

This is my note with some text.

## Research
- [ ] [link 1](http...)
- [ ] [link 2](http...)
  - an indent list element (a bullet point is a list element)
  - another list element nested and with a [link 3](http...)
  - [link 4](http...)
- [link 2](http...)

## My query

Now let's try a dataview query for tasks with the filter for section(header) "Research"

```dataview
TASK
WHERE contains(string(section), "Research")
```

댓글