7
7
- [ ] #task Craft a conclusion 🆔 0wigip ⛔️ mvplec
8
8
- [ ] #task Proofread and edit 🆔 5ti6bf ⛔️ 0wigip
9
9
- [ ] #task Publish the article ⛔️ 5ti6bf
10
+ - [ ] #task Do something on a different project
10
11
11
12
---
12
13
13
- ## Do Next
14
+ ## Real-world searches
15
+
16
+ ### Blocking and Not Blocked - Do very soon
17
+
18
+ ``` tasks
19
+ is blocking
20
+ is not blocked
21
+ # by definition these are all 'not done'
22
+
23
+ path includes {{query.file.path}}
24
+ #explain
25
+ ```
26
+
27
+ ### Not Blocking and Not Blocked - Do any time
14
28
15
29
``` tasks
16
- ((is blocking) AND (is not blocked)) OR (is not blocked)
30
+ is not blocking
31
+ is not blocked
32
+
33
+ # DONE, CANCELLED and NON_TASK are never blocking nor blocked,
34
+ # so we need to exclude those:
17
35
not done
18
36
19
37
path includes {{query.file.path}}
20
38
#explain
21
39
```
22
40
41
+ ### Blocked - Cannot yet do
42
+
43
+ ``` tasks
44
+ is blocked
45
+ # by definition these are all 'not done'
46
+
47
+ path includes {{query.file.path}}
48
+ #explain
49
+ ```
50
+
23
51
---
24
52
25
- ## Blocking Tasks
53
+ ## Demonstration searches - showing the Blocking instructions
26
54
27
- ### Blocking Tasks - Any Status
55
+ ### ` is blocking ` - Blocking Tasks - tasks which prevent others from being done
28
56
29
57
``` tasks
30
58
is blocking
@@ -33,30 +61,39 @@ path includes {{query.file.path}}
33
61
#explain
34
62
```
35
63
36
- ### Blocking Tasks - Not Done
64
+ ### ` is not blocking ` - Non-blocking Tasks - Not Done
37
65
38
66
``` tasks
39
- is blocking
67
+ is not blocking
40
68
not done
41
69
42
70
path includes {{query.file.path}}
43
71
#explain
44
72
```
45
73
74
+ ### ` is not blocking ` - Non-blocking Tasks - Any Status
75
+
76
+ ``` tasks
77
+ is not blocking
78
+
79
+ path includes {{query.file.path}}
80
+ #explain
81
+ ```
82
+
46
83
---
47
84
48
- ## Blocked Tasks
85
+ ## Demonstration searches - showing the Blocked instructions
49
86
50
- ### Blocked Tasks - Any Status
87
+ ### ` is blocked ` - Blocked Tasks - tasks which cannot be done yet
51
88
52
89
``` tasks
53
- is not blocked
90
+ is blocked
54
91
55
92
path includes {{query.file.path}}
56
93
#explain
57
94
```
58
95
59
- ### Blocked Tasks - Not Done
96
+ ### ` is not blocked ` - Non-blocked Tasks - Not Done
60
97
61
98
``` tasks
62
99
is not blocked
@@ -66,19 +103,28 @@ path includes {{query.file.path}}
66
103
#explain
67
104
```
68
105
106
+ ### ` is not blocked ` - Non-blocked Tasks - Any Status
107
+
108
+ ``` tasks
109
+ is not blocked
110
+
111
+ path includes {{query.file.path}}
112
+ #explain
113
+ ```
114
+
69
115
---
70
116
71
117
## Show/Hide Instructions
72
118
73
- ### Hide Id
119
+ ### ` hide id `
74
120
75
121
``` tasks
76
122
hide id
77
123
path includes {{query.file.path}}
78
124
#explain
79
125
```
80
126
81
- ### Hide blockedBy
127
+ ### ` hide depends on ` ==TODO Rename to blocked by==
82
128
83
129
``` tasks
84
130
hide depends on
0 commit comments