2. Mental Models

Overview

tab: Components
```dataview
table summary AS "Summary"
from "PARA/AREAS/Mental Models"
where contains(type, "area_note")
sort created DESC
```
tab: Projects
```dataview
table type AS "Type", Status AS "Status", Priority_Level AS "Priority_Level"
from "PARA/PROJECTS"
where contains(connections, this.file.link)
where type = "project_family" OR type = "project_note"
sort Status ASC
```
tab: Other
```dataview
table type AS "Type"
from "PARA/RESOURCES/DOCUMENTATIONS" OR "PARA/WORKSTATION"
where contains(connections, this.file.link)
where type = "documentation_note" OR type = "workstation_note"
sort type ASC
```
tab: Scheduled Meetings
```dataview
TABLE scheduled_date as "Scheduled Date", start_time as "Start Time", summary as "Summary"
from #area/mental_models
where contains(type,"meeting")
sort meeting_status asc, scheduled_date asc
```
tab: Ongoing Task
```tasks
not done
tags include #area/mental_models
path does not include "SYSTEM"
sort by due date
```
tab: Completed Tasks
```tasks
done
tags include #area/mental_models
path does not include "SYSTEM"
sort by due date
```