Hi all,
We have an existing content property attached to many pages that our app created in the past. To simplify here is the existing content property:
{
id: "123",
startDate: "2023-09-21"
}
In order to search for the id property with CQL the id field was indexed with an extraction as defined in the docs.
Now the app is live since a while and we also want to index the startDate. Here is the extraction we define:
keyConfigurations": [
{
"propertyKey": "meetical",
"extractions": [
{
"objectName": "id",
"type": "string",
"alias": "meeticalId"
},
{
"objectName": "startDate",
"type": "date"
}
]
}
]
We can search for the startDate now, but only newly created pages appear, or when we open, edit and save an existing page.
/wiki/rest/api/content/search?cql=content.property[meetical].startDate>=2020-01-01
After 2 days existing pages containing the content property are still not indexed on our dev instance.
How can we trigger a re-index for our dev instance, and then for all our customer’s instances?
Any advice is appreciated!
Thank you
Lukas