Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

You can filter data with the `get` function allowing you create a 'contains' filter on String column.

Usage:
[url]/?query={get(filter:[{field:first_column_name_to_filter,operator:contains,value:"value"},{field:second_column_name,operator:contains,value:"another_value"}]){first_column_name,second_column_name,nth_column_name}}


Usage with curl: 

curl -X GET -u 'login:pass' "[url]?query=%7BgetAll%7Bfirst_column_name,second_column_name,nth_column_name%7D%7D" -vk

special characters { and } must be URL encoded.

 { become %7B
} become %7D