Changes between Version 40 and Version 41 of S3/S3REST/URLFormat


Ignore:
Timestamp:
12/23/13 10:59:08 (10 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3REST/URLFormat

    v40 v41  
    107107==== Examples ====
    108108
    109 Filtering persons by their first name:
     109Find persons whos first name starts with "Mir":
    110110
    111111{{{
    112 /pr/person?person.first_name__like=Miriam*
     112/pr/person?person.first_name__like=Mir*
    113113}}}
    114114
    115 The tilde {{{~}}} refers to the master resource addressed by the URL, i.e. {{{pr_person}}} in this case:
     115The tilde {{{~}}} refers to the master resource addressed by the URL, i.e. this one is equivalent to the former:
    116116
    117117{{{
    118 /pr/person?~.first_name__like=Miriam*
     118/pr/person?~.first_name__like=Mir*
    119119}}}
    120120
    121 Filtering offices by the name of their location:
     121Find offices with location names which start with "Osl":
    122122
    123123{{{
     
    125125}}}
    126126
     127Query operators can be negated by inserting a {{{!}}}, i.e. find offices with location names which do ''not'' start with "Osl":
     128
     129{{{
     130/org/office?~.location_id$name__like!=Osl*
     131}}}
    127132
    128133== Boundary Box Queries ==