We have an asset which has an Array of Concepts. And we are tying to query this asset using a condition on this array which is not working.
Sample Model (v0.16.0):
concept MyConcept {
o String Name
o String value
}
asset MyAsset identified by myAssetId{
o String myAssetId
o MyConcept[] myConceptArray
}
We would like to write a query that would do something like
SELECT MyAsset WHERE myConceptArray CONTAINS {"name":field1, "value": "somevalue"}.
Is this possible?
Right now, query (CONTAINS) seems to be working only on array of strings.