I’m attempting to request data by filtering against a linked table field, which has multiple entries.
So far the only way I see to query these fields is to duplicate the field id and add each entry like the following:
&filters={"filter_type":"AND",
"filters":[
{
"type":"link_row_has",
"field":2796657,
"value":67
},
{
"type":"link_row_has",
"field":2796657,
"value":another id
}
]
My issue Is I want to be able to add these filters from the URL but I cant dynamically add the following every time
{
"type":"link_row_has",
"field":2796657,
"value":another id
}
Is there a way to query through a single value using a list:
{"filter_type":"AND",
"filters":[
{
"type":"link_row_has",
"field":2796657,
"value":[67, another id]
}
]