show/hide this revision's text 2 added 2 characters in body; edited title

RESTful queries URL design - how to compose query using OR queriesbetween parameters

How would you design a RESTful query to support OR operand between fieldsparameters. Let's say my resource has two properties prop1 fields field1 & prop2field2. How would you design the URL to enable the following query:

"Get myresources where field1=x OR field2=y"

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&field2=y

A possible solution can be to provide a single query parameter with free text where part, for example:

GET /myresource?q={field1=x OR field2=y}

But that would make it more complicated for clients to parse and extend or reduce filtered fields.

What do you suggest?

show/hide this revision's text 1

RESTful queries - how to compose OR queries

How would you design a RESTful query to support OR operand between fields. Let's say my resource has two properties prop1 & prop2. How would you design the URL to enable the following query:

"Get myresources where field1=x OR field2=y"

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&field2=y

A possible solution can be to provide a single query parameter with free text where part, for example:

GET /myresource?q={field1=x OR field2=y}

But that would make it more complicated for clients to parse and extend or reduce filtered fields.

What do you suggest?