← Glean-ia-acs Β· Day 14 of 56
Level 200 β€” Foundations30 minNIST MAP

Combining Operators for Precision

Stacking filters into one sharp query

You'll be able to

Read first

Day 7 Lab

  1. Start with a broad keyword that returns far too much.
  2. Add type: to keep one kind of document.
  3. Add app: to keep one connected system.
  4. Add updated: to keep one recency window.
  5. Read the full query back and confirm each filter earned its place.

Working Example: Stacking Filters

Each operator removes a different slice of noise. Stack them and the result set narrows to exactly what you meant. Verified against search_filters.

budget                                          β†’ thousands of mixed results
type:document budget                            β†’ only documents
type:document app:drive budget                  β†’ only Drive documents
type:document app:drive updated:past_week budget β†’ only Drive docs changed this week

Read it left to right: type cuts the kind, app cuts the source, updated cuts the age.

Check for understanding

What does each operator in a stacked query remove from the result set?

Check yourself

Pick an answer β€” you'll see if it's right and why.

1. What does `roadmap updated:past_week` return?

2. How do you isolate results from Q1 2026 with a precise date window?

3. What is the difference between `in:` and `collection:`?

4. When is `my:history pricing` the right move?

5. After Glean Assistant gives a cited answer, what is the governed next step?

Pass threshold 80% Β· week 2 quiz

In 10 seconds

β€œOne filter narrows; three carve. Stack type:document app:drive updated:past_week budget and each operator strips away another slice until only the exact set remains. This is how precise search is built.”

Next Β· Week 3 Day 1
Consuming Built-in Glean Skills