Skip to content

Commit

Permalink
Add back search refinement to users search
Browse files Browse the repository at this point in the history
Co-authored-by: Sergiu Ghitea <[email protected]>
  • Loading branch information
ewanharris and sergiught committed Jan 17, 2023
1 parent d8c07f8 commit 7854f8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/auth0_users_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ auth0 users search [flags]

```
--json Output in json format.
-n, --number int Number of users to retrieve. Minimum 1, maximum 1000. (default 50)
-n, --number int Number of users, that match the search criteria, to retrieve. Minimum 1, maximum 1000. If limit is hit, refine the search query. (default 50)
-q, --query string Query in Lucene query syntax. See https://auth0.com/docs/users/user-search/user-search-query-syntax for more details.
-s, --sort string Field to sort by. Use 'field:order' where 'order' is '1' for ascending and '-1' for descending. e.g. 'created_at:1'.
```
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var (
Name: "Number",
LongForm: "number",
ShortForm: "n",
Help: "Number of users to retrieve. Minimum 1, maximum 1000.",
Help: "Number of users, that match the search criteria, to retrieve. Minimum 1, maximum 1000. If limit is hit, refine the search query.",
}
userImportTemplate = Flag{
Name: "Template",
Expand Down

0 comments on commit 7854f8a

Please sign in to comment.