8000 Changed RANDOM_TOKEN block, now support 0 as value by lservini · Pull Request #221 · arangodb/docs · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Changed RANDOM_TOKEN block, now support 0 as value #221

Merged
merged 2 commits into from
Nov 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3.6/aql/functions-string.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ Generate a pseudo-random token string with the specified length.
The algorithm for token generation should be treated as opaque.

- **length** (number): desired string length for the token. It must be greater
than 0 and at most 65536.
or equal to 0 and at most 65536. A *lenght* of 0 returns an empty string.
- returns **randomString** (string): a generated token consisting of lowercase
letters, uppercase letters and numbers

Expand Down
0