Replies: 3 comments 2 replies
-
Search for entries containing C6 Furina {
"summary.team": {
"$elemMatch": {
"name":"furina",
"cons": 6
}
}
} |
Beta Was this translation helpful? Give feedback.
-
Here's a filter excluding five star constellations and weapons. It includes both standard and limited five stars. It's up to date with version 5.3 (Mavuika and Citlali and their signature weapons). {
"summary.team": {
"$not": {
"$elemMatch": {
"$or": [
{
"name": { "$in": [
"albedo", "alhaitham", "aloy", "arlecchino", "ayaka", "ayato",
"baizhu", "chasca", "chiori", "citlali", "clorinde", "cyno", "dehya", "diluc",
"emilie", "eula", "furina", "ganyu", "hutao", "itto", "jean",
"kazuha", "keqing", "kinich", "klee", "kokomi", "lyney", "mavuika", "mona",
"mualani", "nahida", "navia", "neuvillette", "nilou", "qiqi",
"raiden", "shenhe", "sigewinne", "tartaglia", "tighnari",
"venti", "wanderer", "wriothesley", "xianyun", "xiao", "xilonen",
"xianyun", "yaemiko", "yelan", "yoimiya", "zhongli"
] },
"cons": { "$gte": 1}
},
{
"weapon.name": { "$in": [
"athousandblazingsuns", "athousandfloatingdreams", "absolution", "amosbow", "aquasimulacra",
"aquilafavonia", "astralvulturescrimsonplumage", "beaconofthereedsea",
"calamityqueller", "cashflowsupervision", "cranesechoingcall",
"crimsonmoonssemblance", "elegyfortheend", "engulfinglightning",
"fangofthemountainking", "freedomsworn", "harangeppakufutsu",
"hunterspath", "jadefallssplendor", "kagurasverity", "keyofkhajnisut",
"lightoffoliarincision", "lostprayertothesacredwinds", "lumidouceelegy",
"memoryofdust", "mistsplitterreforged", "peakpatrolsong", "polarstar",
"primordialjadecutter", "primordialjadewingedspear", "quantumcatalyst",
"redhornstonethresher", "silvershowerheartstrings", "skywardatlas",
"skywardblade", "skywardharp", "skywardpride", "skywardspine",
"songofbrokenpines", "splendoroftranquilwaters", "staffofhoma",
"staffofthescarletsands","starcallerswatch", "summitshaper", "surfsup", "thefirstgreatmagic",
"theunforged", "thunderingpulse", "tomeoftheeternalflow",
"tulaytullahsremembrance", "urakumisugiri", "verdict", "vortexvanquisher",
"wolfsgravestone"
]}
}
]
}
}
}
} |
Beta Was this translation helpful? Give feedback.
-
Filter to include 1 or more characters, within a given constellation range, optionally allow other characters but keeping them below a con range if included, and completely exclude other characters.
|
Beta Was this translation helpful? Give feedback.
-
How to use
Copy and paste the code block (modifying to your requirement) into the custom query box at the top of the filter selections:
Note that using custom query will ignore any other UI options you have selected (like character filter). They cannot be both used at the same time (maybe for future...)
Examples
Filtering by submitter Discord ID (copy Discord ID by right clicking on the user's name in Discord), replace the 12345 with actual id:
Filter by target count:
Filter by characters (i.e) includes:
Special case for Traveler (due to
lumine
vsaether
both being valid)Same as above but this time no Nilou
Using regex to search entry descriptions. More on what's allowed for
$regex
hereUsing regex to search configs
Beta Was this translation helpful? Give feedback.
All reactions