RESTful URL design - how to query using OR between parameters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:36:28Z http://stackoverflow.com/feeds/question/495426 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/495426/restful-url-design-how-to-query-using-or-between-parameters 6 RESTful URL design - how to query using OR between parameters LiorH 2009-01-30T12:59:32Z 2009-05-30T18:09:49Z <p>How would you design a RESTful query to support OR operand between parameters. Let's say my resource has two fields field1 &amp; field2. How would you design the URL to enable the following query: </p> <p>"Get myresources where field1=x OR field2=y"</p> <p>Designing queries in REST is pretty straight forward, but I have only seen queries that supports AND between query fields. e.g. /myresource?field1=x&amp;field2=y</p> <p>A possible solution can be to provide a single query parameter with free text where part, for example:</p> <p>GET /myresource?q={field1=x OR field2=y}</p> <p>But that would make it more complicated for clients to parse and extend or reduce filtered fields. </p> <p>What do you suggest?</p> http://stackoverflow.com/questions/495426/restful-url-design-how-to-query-using-or-between-parameters/495466#495466 4 Answer by annakata for RESTful URL design - how to query using OR between parameters annakata 2009-01-30T13:19:12Z 2009-01-30T13:19:12Z <p>Query params aren't by definition AND related, they're just inert params - how you handle them is up to you. For an OR search I'd suggest:</p> <pre><code>GET /myresources?field1=x&amp;field2=y&amp;inclusive=true </code></pre> <p><em>If</em> you want to default to an AND relationship (reasonable), and any other extension you want is of course possible.</p> http://stackoverflow.com/questions/495426/restful-url-design-how-to-query-using-or-between-parameters/702158#702158 0 Answer by aleemb for RESTful URL design - how to query using OR between parameters aleemb 2009-03-31T17:30:53Z 2009-03-31T17:30:53Z <p>For what its worth, SO uses the following format for finding questions with multiple tags:</p> <p><code>http://stackoverflow.com/questions/tagged?tagnames=jquery or css or asp.net or php or web-development or svn</code></p> <p>It's perfectly reasonable to separate them with <code>,</code> or <code>;</code> assuming those aren't valid characters for the tags themselves. Search engines typically use <code>q=keyword1+keyword2</code> and url-encode any <code>+</code> in the keywords themselves which is what I would suggest you do if this is for a search URI.</p> http://stackoverflow.com/questions/495426/restful-url-design-how-to-query-using-or-between-parameters/930241#930241 1 Answer by opensas for RESTful URL design - how to query using OR between parameters opensas 2009-05-30T18:09:49Z 2009-05-30T18:09:49Z <p>it depends</p> <p>if you want your resource to ALLWAYS be accessed with condition1 OR condition2 your can just treat them that way...</p> <p>but if you want to have both possibilities (using AND or OR) you would have to implement something like annakata said, a parameter indicating how should conditions be added to que query...</p> <p>if you want to have s more flexible approach ( cond1 and cond2 or cond3 ) i see no other choice but implementing you own query with free text, like you said...</p> <p>On the other hand, if you are allways querying the same field (which I think is not the case because you specified field1, field2) you can use allemb's approach, and just use some character ( "," or ";" ) to separate values...</p> <p>personally, I've developed some kind of micro query language, like</p> <p>field1 = val1..val2 (field1 between val1 and val2) field1 = >val2 (field1 > val2) field1 = val1;val2 (field1 = val1 or field1 = val2 ) filed1 = <em>val1</em> ( field1 contains val1 )</p> <p>field1 = val1..val2&amp;>val3 ( field1 between val1 and val2 and field1 > val3...</p> <p>well, you get the idea</p> <p>but then I combine every condition with and, so this is just an expanded example of waht aleemb was saying...</p>