Filter on Array Column via Typescript OSDK

Looks like in Typescript V2 repos I can’t filter on Array Columns?

Or am I just not using the OSDK correctly. At least I couldn’t find the right API syntax in the docs.

https://palantir.mcloud.merckgroup.com/docs/foundry/ontology-sdk/typescript-osdk/

E.g I was trying:

orders.where({

manufacturNames: { $eq: “name“ }

})

manufacturNames is an Array String Field. I think in the Typescript V1 Repo’s this kind of filters are possible as well as in Workshop.

Have it should have used:

$contains

1 Like