Search tips
Power-user syntax for the binder search bar. Matches the vocabulary most collectors already know from Card Ladder / eBay.
The five fields that identify a card
Industry-standard required fields for any card record:
- Category — Baseball, Basketball, Football, Hockey, Soccer, Pokémon, One Piece, Marvel, Multi-Sport, UFC/MMA, Wrestling. (We extend beyond Card Ladder with TCG coverage for MTG and others.)
- Year— for multi-year vintage use year_label (“1909-1911”).
- Set— often includes brand (“Panini Prizm”, “Topps Chrome”).
- Player / Subject — one or more. CardboardChasr stores as an array so dual-auto cards are searchable by either name.
- Condition— “Raw” is a first-class value. PSA/BGS/SGC/CGC + numeric grade is the graded path.
Query operators
| Operator | Meaning | Example |
|---|---|---|
| word word | All terms must match | Jordan rookie |
| -word | Exclude matches | refractor -gold |
| (word1 word2) | Any of the grouped terms | (auto patch) |
| -"exact phrase" | Exclude exact phrase | chrome -"black refractor" |
| Raw | Only ungraded | Jordan Raw |
Appending Rawto a query returns only ungraded cards. Useful for “find all my raw Topps Chrome” in one shot.
Power-user rules of thumb
- Avoid the card number if you can.Card numbers drift between base and parallels (“#1 Base” vs “#1 Silver Prizm”). Start with player + year + set, then narrow.
- Use exclusion for parallels. The cleanest way to get base cards is to exclude known parallel names:
Prizm -Silver -Gold -Mojo -Hyper. - Grade goes last.Identify the card first, then add “PSA 10” or “Raw” to filter condition.
- Parallel names vary by brand. Panini uses Silver / Gold / Mojo / Hyper / Choice. Topps uses Refractor / X-Fractor / Orange / Gold. Bowman uses Sky Blue / Purple / Red / Atomic.
Why we differ from Card Ladder
Card Ladder manages parallels via long exclusion strings in the search query (e.g. -Silver -Gold -Mojo). We store brand and parallel as first-class typed columns, so you can filter cleanly without relying on search syntax. Both worlds work — the query syntax above is for when you want the speed of keyboard-only filtering.