2
2
<v-main >
3
3
<v-card class =" mx-auto elevation-0 mt-6 section" max-width =" 800px" >
4
4
<v-card-title class =" header" > Search syntax </v-card-title >
5
- <v-card-text class =" pa-8" >
6
- <p class =" subtitle-2" >Search by term</p >
7
- <p >
5
+ <v-card-text class =" pa-8 pt-0 " >
6
+ <p class =" text- subtitle-2" >Search by term</p >
7
+ <p class = " text-body-2 " >
8
8
You can find individuals whose identities contain a particular term in
9
9
their name, email address or username by entering the term on the
10
10
search box. You can combine this query with any filters, for example
11
11
<code >John lastUpdated:>2020-11-01</code >.
12
12
</p >
13
- <p class =" subtitle-2" >Filter by last updated date</p >
14
- <p >
13
+ <p class =" text- subtitle-2" >Filter by last updated date</p >
14
+ <p class = " text-body-2 " >
15
15
You can filter individuals based on when they were modified, using the
16
16
<code >lastUpdated</code > filter.
17
17
</p >
66
66
</template >
67
67
</v-simple-table >
68
68
69
- <p class =" subtitle-2 mt-8 " >Search for bots</p >
70
- <p >
69
+ <p class =" text- subtitle-2" >Search for bots</p >
70
+ <p class = " text-body-2 " >
71
71
You can search for individuals based on whether they are marked as
72
72
bots, using the <code >isBot:true</code > and <code >isBot:false</code >
73
73
filters.
74
74
</p >
75
- <p class =" subtitle-2 mt-8 " >Filter by gender</p >
76
- <p >
75
+ <p class =" text- subtitle-2" >Filter by gender</p >
76
+ <p class = " text-body-2 " >
77
77
You can search for individuals based on their gender, using the
78
78
<code >gender</code > filter. Genders that include spaces should be
79
79
wrapped in double quotes. For example:
80
80
<code >gender:"non binary"</code >.
81
81
</p >
82
82
83
- <p class =" subtitle-2 mt-6 " >Filter by country</p >
84
- <p >
83
+ <p class =" text- subtitle-2" >Filter by country</p >
84
+ <p class = " text-body-2 " >
85
85
You can filter individuals based on their country using the
86
86
<code >country</code > filter.
87
87
</p >
114
114
</template >
115
115
</v-simple-table >
116
116
117
- <p class =" subtitle-2 mt-8 " >Filter by data source</p >
118
- <p >
117
+ <p class =" text- subtitle-2" >Filter by data source</p >
118
+ <p class = " text-body-2 " >
119
119
You can search for individuals based on the data source of their
120
120
identities, using the <code >source</code > filter. Source names that
121
121
include spaces should be wrapped between double quotes. For example:
122
122
<code >source:"Stack Exchange"</code >.
123
123
</p >
124
124
125
- <p class =" subtitle-2 mt-8 " >Filter by enrollment</p >
126
- <p >
125
+ <p class =" text- subtitle-2" >Filter by enrollment</p >
126
+ <p class = " text-body-2 " >
127
127
You can search for individuals based on the organizations they are
128
128
enrolled in, using the <code >enrollment</code > filter. Organizations
129
129
that include spaces should be wrapped between double quotes. For
130
130
example: <code >enrollment:"Dumbledore's Army"</code >.
131
131
</p >
132
132
133
- <p class =" subtitle-2" >Filter by enrollment date</p >
134
- <p >
133
+ <p class =" text- subtitle-2" >Filter by enrollment date</p >
134
+ <p class = " text-body-2 " >
135
135
You can filter individuals based on when they were affiliated to an
136
136
organization, using the <code >enrollmentDate</code > filter.
137
137
</p >
189
189
</template >
190
190
</v-simple-table >
191
191
192
- <p class =" subtitle-2 mt-8 " >Filter by enrollment status</p >
193
- <p >
192
+ <p class =" text- subtitle-2" >Filter by enrollment status</p >
193
+ <p class = " text-body-2 " >
194
194
You can search for individuals based on whether they have any
195
195
affiliation, using the <code >isEnrolled:true</code > and
196
196
<code >isEnrolled:false</code > filters.
197
197
</p >
198
+
199
+ <p class =" text-subtitle-2" >Filter by review status</p >
200
+ <p class =" text-body-2" >
201
+ You can search for individuals based on whether they have been marked
202
+ as reviewed, using the <code >isReviewed:true</code > and
203
+ <code >isReviewed:false</code > filters.
204
+ </p >
205
+
206
+ <p class =" text-subtitle-2" >Filter by review date</p >
207
+ <p class =" text-body-2" >
208
+ You can filter individuals based on when they were last marked as
209
+ reviewed, using the <code >lastReviewed</code > filter.
210
+ </p >
211
+ <v-simple-table >
212
+ <template v-slot :default >
213
+ <thead >
214
+ <tr >
215
+ <th class =" text-left" width =" 30%" >Filter</th >
216
+ <th class =" text-left" >Explanation</th >
217
+ </tr >
218
+ </thead >
219
+ <tbody >
220
+ <tr >
221
+ <td width =" 30%" ><code >lastReviewed:>YYYY-MM-DD</code ></td >
222
+ <td >
223
+ Matches individuals that were reviewed after the given date.
224
+ </td >
225
+ </tr >
226
+ <tr >
227
+ <td width =" 30%" ><code >lastReviewed:>=YYYY-MM-DD</code ></td >
228
+ <td >
229
+ Matches individuals that were reviewed on or after the given
230
+ date.
231
+ </td >
232
+ </tr >
233
+ <tr >
234
+ <td width =" 30%" >
235
+ <code >lastReviewed:< ; YYYY-MM-DD</code >
236
+ </td >
237
+ <td >
238
+ Matches individuals that were reviewed before the given date.
239
+ </td >
240
+ </tr >
241
+ <tr >
242
+ <td width =" 30%" >
243
+ <code >lastReviewed:< ; =YYYY-MM-DD</code >
244
+ </td >
245
+ <td >
246
+ Matches individuals that were reviewed on or before the given
247
+ date.
248
+ </td >
249
+ </tr >
250
+ <tr >
251
+ <td width =" 30%" >
252
+ <code >lastReviewed:YYYY-MM-DD..YYYY-MM-DD</code >
253
+ </td >
254
+ <td >
255
+ Matches individuals that were reviewed between the given
256
+ dates.
257
+ </td >
258
+ </tr >
259
+ </tbody >
260
+ </template >
261
+ </v-simple-table >
198
262
</v-card-text >
199
263
</v-card >
200
264
</v-main >
@@ -205,3 +269,36 @@ export default {
205
269
name: " SearchHelp" ,
206
270
};
207
271
</script >
272
+ <style scoped>
273
+ .text-subtitle-2 {
274
+ padding-bottom : 1.2rem ;
275
+ padding-top : 1.654rem ;
276
+ font-size : 1rem ;
277
+ }
278
+
279
+ th ,
280
+ td {
281
+ padding : 1.09rem 0 ;
282
+ }
283
+
284
+ th {
285
+ font-size : 0.813rem ;
286
+ font-weight : 500 ;
287
+ }
288
+
289
+ td {
290
+ border-top : thin solid rgba (0 , 0 , 0 , 0.08 );
291
+ }
292
+
293
+ td :first-child {
294
+ padding-right : 1.09rem ;
295
+ }
296
+
297
+ code {
298
+ border-radius : 4px ;
299
+ font-size : 90% ;
300
+ line-height : 1.25rem ;
301
+ padding : 0.1rem 0.25rem ;
302
+ background-color : #f2f3f5 ;
303
+ }
304
+ </style >
0 commit comments