request |
read for query parameters to be used as search criteria; use any combination
of fields from the users table using a prefix of users or no prefix.
For example, /users/search?users.is_active=Y&users.email_address=*example.org&phone==
would find active users having an email address that ends with 'example.org' and
a null phone number.'
Sorting: To sort the result set, you can provide the following reserved query parameter: orderBy If the orderBy parameter is not provided a default sort of users.id+ASC will be applied.
For example, /users/search?users.is_active=Y&orderBy=users.name+DESC would return all active user records sorted descending by the users name. Multiple sort columns can be provided in a comma delimited format. orderBy=prefix.field+direction,prefix.field+direction
Pagination: To page the result set, you can provide the following reserved query parameters: recordLength and recordOffset
For example, /users/search?users.is_active=Y&recordLength=100&recordOffset=50 would return 100 records starting at the 51st record in the return record set. If no recordLength parameter is provided the search result maximum value in the mobile service control file will be applied. |
context
|
|
HttpServletRequest
|