Changes between Version 21 and Version 22 of S3/S3REST/URLFormat


Ignore:
Timestamp:
01/30/12 12:54:19 (13 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3REST/URLFormat

    v21 v22  
    4242  * '''value(s)''' is the value or a comma-separated list of values to test against (a comma will be treated as OR)
    4343
     44{{{None}}} as value can be specified as {{{NONE}}} in the URL (all-uppercase).
     45
     46A 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
     48It 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
    4450Supported operators:
    4551
     
    5258  ||!__ge||greater than or equal, >=||numeric and date types only||
    5359  ||!__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||||
    5762
    58 
     63To negate a query, append {{{!}}} to the operator, e.g. {{{resource.fieldname__like!=value}}}.
    5964== Field Queries ==
    6065