You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2026. It is now read-only.
Servers with a high amount of suggestions can get messy, which makes it hard to find a specific suggestion based on its attributes (like its author or content). We've added a long requested feature: a search command! You're now able to go through your suggestions feed in the blink of an eye by specifying search parameters to narrow down results. This command is rather complex so we'll dive into it below.
3
+
Servers with a high amount of suggestions can get messy, which makes it hard to find a specific suggestion based on its attributes (like its author or content). With the search command, you're able to browse your suggestion feed by specifying search parameters to narrow down results.
4
4
5
5
### Usage
6
-
Use `.search <parameters separated by a space>` in any channel the bot can read and send messages in.
7
-
8
-
?> You can include as many search parameters as you want.
6
+
Use `.search <parameters separated by a space>` in any channel the bot can read and send messages in. You can include as many search parameters as you want.
9
7
10
8
### Parameters and Syntax
11
9
@@ -20,7 +18,7 @@ Use `.search <parameters separated by a space>` in any channel the bot can read
20
18
| Content |`content:(string)`| Only contains suggestions whose content match with the string |`.search content:"bananas`|
21
19
22
20
### More Examples
23
-
Here's some quick extra examples you might find useful:\
21
+
Here's some quick extra examples you might find useful:
24
22
- Using `.search status:approved votes>12 content:"memes"` will return any approved suggestion with **more than 12 upvotes** while containing "memes".
25
23
- Using `.search mark!working author:123456789987654321 content!"water"` will return any suggestion **not** marked as "Working", sent by the user that has the 123456789987654321 id and that does not contain "water".
26
24
- Using `.search time<30d` would return all suggestions sent in the last **30 days**.
@@ -31,12 +29,9 @@ Here's some quick extra examples you might find useful:\
31
29
### Operators
32
30
The above examples support multiple operators to narrow down the search results:
33
31
34
-
| Operator |Meaning |
32
+
| Operator |Description|
35
33
|:--------:|:------------:|
36
34
|`:`| equal to |
37
35
|`>`| greater than |
38
36
|`<`| less than |
39
-
|`!`| not |
40
-
41
-
42
-
> Don't hesitate to join our [support server](https://suggester.js.org/support) if you need assistance with this feature. You're also welcome to suggest improvements for this documentation page!
0 commit comments