I’m attempting to add a connector to an oData endpoint, and need to craft a URL that includes a filter with multiple “OR” statements based on an input [String].
Needs to look like:
/product?filter=(name eq “product1” OR name eq “product2” …)
Where the product names are in an input of type [String!] named “products”.
I’m curious if it is possible to use the map method in the the url:
http: {
GET: “/product?filter=(${args.input.products product →
map({ ‘product_name eq product OR’})
})”
}
I haven’t gone too far down this road, but I assume that the methods only work within the context of field mapping, not URL construction.