...
Code Block |
---|
http://{host}/rds/api/catalog/{collection}/{view}/select?cols=col1,col2,col3,... |
Query by Regular Expression
User Users can also use regular expressions to select variables. Regular expressions can be used on views that have minimal metadata. Again we will use the cols parameter for this, but rather than specifying a specific name we will use a regular expression. Multiple regular expressions can be passed in using the same comma separated list of values if desired. Users can also combine regular expressions with specific variable names.
Code Block |
---|
http://{host}/rds/api/catalog/{collection}/{view}/select?cols={regex} |
...
Code Block |
---|
http://{host}/rds/api/catalog/{collection}/{view}/select?cols=$keyword |
...
Code Block |
---|
http://{host}/rds/api/catalog/{collection}/{view}/select?cols=col1,col2,col3,{regex},$keyword |
...