Changes between Version 40 and Version 41 of S3/S3REST/URLFormat
- Timestamp:
- 12/23/13 10:59:08 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3REST/URLFormat
v40 v41 107 107 ==== Examples ==== 108 108 109 Fi ltering persons by their first name:109 Find persons whos first name starts with "Mir": 110 110 111 111 {{{ 112 /pr/person?person.first_name__like=Mir iam*112 /pr/person?person.first_name__like=Mir* 113 113 }}} 114 114 115 The tilde {{{~}}} refers to the master resource addressed by the URL, i.e. {{{pr_person}}} in this case:115 The tilde {{{~}}} refers to the master resource addressed by the URL, i.e. this one is equivalent to the former: 116 116 117 117 {{{ 118 /pr/person?~.first_name__like=Mir iam*118 /pr/person?~.first_name__like=Mir* 119 119 }}} 120 120 121 Fi ltering offices by the name of their location:121 Find offices with location names which start with "Osl": 122 122 123 123 {{{ … … 125 125 }}} 126 126 127 Query 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 }}} 127 132 128 133 == Boundary Box Queries ==