Optional
afterOptional
keyOnly return entries that match the pattern,
%
: A percent sign (%) matches any sequence of zero or more characters._
: An underscore (_) matches any single character.To match _ and % as literals escape them with backslash (\_
and \%
).
`user\_%` will match `user_123123`
Optional
limitNumber of entries to return, max 100.
Defaults to 25 as of writing.
Generated using TypeDoc
Only return entires after this key.
Use this to paginate through results, using the key of the last entry in the list call.