# Incubator Board
## ✅ WIP
```dataview
TABLE
Status,
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and (#now or #later or #x)
SORT choice(Status = "#now", 0, choice(Status = "#later", 1, 2))
```
## 🌱 Seedlings
```dataview
TABLE
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and -#now and -#later and -#x and -#someday
SORT file.cday DESC
LIMIT 7
```
## 🍁 Aging
```dataview
TABLE
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and -#now and -#later and -#x
SORT file.mday ASC
LIMIT 7
```
## 🌿 Budding
Tag `skip/budding` or `evergreen` to complete the note.
```dataview
TABLE
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM #zettel
AND -#skip/budding
AND -"robot"
AND -"dock"
AND (
(#now OR #later OR #someday) OR (#x AND -#evergreen)
)
SORT file.mday DESC
LIMIT 15
```