-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation #850
Comments
if you want you can show me with in 30 min, then i can prepare document for you. then you can upload it into web page. @iammukeshm |
@iammukeshm I can work on adding an example to documentation. |
Any update? |
@ertugrulkaya Will have it ready by tomorrow. |
@ertugrulkaya Here is a simple example with {
"advancedFilter": {
"field": "Name",
"operator": "eq",
"value": "Cool Product"
},
"brandId": "<replace with brand id you used to create the product>"
} Similarly, you can pass other variants of advanced filter by combining various operators with values for a field. The supported operators are : public static class FilterOperator
{
public const string EQ = "eq";
public const string NEQ = "neq";
public const string LT = "lt";
public const string LTE = "lte";
public const string GT = "gt";
public const string GTE = "gte";
public const string STARTSWITH = "startswith";
public const string ENDSWITH = "endswith";
public const string CONTAINS = "contains";
} Note that |
Hello @parthvnp "advancedFilter": { |
Hi ,
Could you please add an example or documentation about how use advancedFilter logic??
The text was updated successfully, but these errors were encountered: