Pete Lorenz
01/30/2025, 4:07 PMMauricio Cabezas
01/30/2025, 5:33 PMPete Lorenz
01/30/2025, 7:23 PM{
"label": "Source_Account_Id_",
"patternFilter": "X"
}
This gets translated to ILIKE '%X%' in SQL.
But we'd like to be able to do something like this:
{
"label": "Source_Account_Id_",
"patternFilter": "X%"
}
This is so that "X" would be matched as the first character in the SQL statement.
Let me know if you need anything else.Pete Lorenz
01/31/2025, 5:24 PMMauricio Cabezas
01/31/2025, 7:14 PM{
"cacheId": "string",
"complementFilter": false,
"dataSamplingPercentage": 100,
"dependsOn": [
{
"complementFilter": false,
"label": "string",
"values": [
"string"
]
}
],
"exactFilter": [
"string"
],
"excludePrimaryLabel": false,
"filterBy": {
"labelType": "PRIMARY"
},
"label": "label_id",
"patternFilter": "string",
"sortOrder": "ASC",
"validateBy": [
{
"id": "string",
"type": "string"
}
]
}
Which you can see in our API documentation , specifically check the body parameter complementFilter
, please note this value is inverse.Pete Lorenz
01/31/2025, 8:30 PMMauricio Cabezas
02/03/2025, 4:28 PM