Changes between Version 21 and Version 22 of S3/S3REST/URLFormat
- Timestamp:
- 01/30/12 12:54:19 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3REST/URLFormat
v21 v22 42 42 * '''value(s)''' is the value or a comma-separated list of values to test against (a comma will be treated as OR) 43 43 44 {{{None}}} as value can be specified as {{{NONE}}} in the URL (all-uppercase). 45 46 A value enclosed in double quotes {{{"}}} is treated as string constant - i.e. commas and {{{NONE}}} inside the string will not be interpreted in this case. 47 48 It is possible to chain {{{$}}} selectors like in {{{resource.foreign_key$foreign_key$fieldname=value}}} to select fields in tables which are two or more forward references away. 49 44 50 Supported operators: 45 51 … … 52 58 ||!__ge||greater than or equal, >=||numeric and date types only|| 53 59 ||!__like||like, LIKE(%value%)||string/text types only|| 54 ||!__unlike||not like, NOT LIKE(%value%)||string/text types only|| 55 ||!__in||containment, contains(value)||list types only|| 56 ||!__ex||negative containment, not contains(value)||list types only|| 60 ||!__contains||containment||list types only|| 61 ||!__belongs||reverse containment|||| 57 62 58 63 To negate a query, append {{{!}}} to the operator, e.g. {{{resource.fieldname__like!=value}}}. 59 64 == Field Queries == 60 65