cancel
Showing results for 
Search instead for 
Did you mean: 

Category Lucene queries and combined queries

sergio
Champ in-the-making
Champ in-the-making
Why does not the following Lucene query work?

+PARENT:"workspace://SpacesStore/a169fc91-9a45-11db-8c36-4fedb9902cf2" +PATH:"/cm:generalclassifiable/cm:Microarray Experiment/cm:CEL file/*"


I have a space with id = a169fc91-9a45-11db-8c36-4fedb9902cf2 and I want to retrieve all the child nodes with a specified category type. Every node/file uploaded to the parent id is automatically assigned with a specific category. In my case a file with extension .cel is assigned with the category CEL file which is a sub-category of Microarray Experiment.

I am sure I have a file with the correct category but the above quesry does not work.

Could anyone explain why it does not work?

All the best,

Sergio
2 REPLIES 2

andy
Champ on-the-rise
Champ on-the-rise
Hi

PATH needs to be ISO 9075 encoded.

Try:

+PARENT:"workspace://SpacesStore/a169fc91-9a45-11db-8c36-4fedb9902cf2" +PATH:"/cm:generalclassifiable/cm:Microarray_x0020_Experiment/cm:CEL_x0020_file/*"

Regards

Andy

sergio
Champ in-the-making
Champ in-the-making
Many thanks Andy, my stupid mistake!

All the best,

Sergio