I am creating a graphdb lucene connector having a field that traverses all reachable locatedInside relationships for a node and indexes the labels.
{
"indexed": true,
"stored": true,
"multivalued": true,
"analyzed": true,
"fieldName": "Parentlabel",
"propertyChain": [
"(<http://ontologies.acme.com/core#locatedInside>+)",
"http://www.w3.org/2000/01/rdf-schema#label"
],
}
However no vale is indexed for this field. It works fine if i just use one level in property chain
"propertyChain": [
"http://ontologies.acme.com/core#locatedInside",
"http://www.w3.org/2000/01/rdf-schema#label"
]
Does lucene connector in graphdb not allow using path language