Hi all
we have Documentum 7.3 with the xPlore module and we are using the REST API, via the "/search" resource to perform searches against xPlore.
Having a query json as follows:
{
"types": [
"dm_document"
],
"columns": [
"r_object_type",
"r_creation_date",
"object_name",
"r_folder_id",
"repeating_attribute"
],
"expression-set": {
"expression-type": "expression-set",
"expressions": [
{
"expression-type": "property",
"name": "custom_property_1",
"operator": "EQUAL",
"value": "1",
"exact-match": true,
"case-sensitive": false,
"fuzzy": false,
"repeating": false
},
{
"expression-type": "property",
"name": "la_atr_deleted",
"operator": "EQUAL",
"value": "false",
"exact-match": true,
"case-sensitive": false,
"fuzzy": false,
"repeating": false
},
],
"operator": "AND"
}
}
And using the following url params in the search request: search?items-per-page=10&inline=true
I get the results of the query in the response, inside $.entries[*].content.properties.
The problem is that the "repeating_attribute" property value only returns the first value, not the whole list of values in said repeating attribute.
I've checked the OpenText Documentum Platform REST Services 7.3 Reference Guide document and I couldn't find anything that might resolve this issue.
What am I missing here? Could it be that something must be properly configured in xPlore for it to index all values for repeating attributes?
Thanks a lot in advance