Add support to craft data API requests where field names also support wildcards. Useful in "search" type usecases where multiple fields can be queried for the same data;
GET /data/contacts/address_*/*cambridge*
This would find the search term "cambridge" in any position, in any field that begins with address_ (i.e. address_line1, address_line2, address_city, etc).
A wildcard alone would also allow searching in any field:
GET /data/itineraries/*/Cambridge
Add support to craft data API requests where field names also support wildcards. Useful in "search" type usecases where multiple fields can be queried for the same data;
This would find the search term
"cambridge"in any position, in any field that begins withaddress_(i.e.address_line1,address_line2,address_city, etc).A wildcard alone would also allow searching in any field: