Developer manual
Spring Queries
Several Spring URL API's support complex queries.
Updated: Type: url
Method
/query/<field id><delimiter><value><separator><field id><delimiter><value>
Delimiters
- : Equal to
- ! Not equal to
- ~ Like
Separators
- , And
- | Or
- + Space
Examples
#1
Request
title:home
'title' field is equal to 'home'
#2
Request
title!home
'title' field is not equal to 'home'
#3
Request
title:home,status:2
'title' field is equal to 'home' and 'status' is equal to '2'
#4
Request
title:home|title:about+us
'title' field is equal to 'home' or 'title' is equal to 'about us'. NOTE: The following is not valid: title:home|about+us