I need a design suggestion for implementing a Index or Relation for an array. I am using latest Spring Data Neo4j for its implementation I have a Node which has field of categories like below,
@NodeEntity
Class Product {
Set<Category> Categories;
}
public enum Category {
RTW,
SHOE,
DENIM,
OUTER_WEAR
}
Now, i need to find out the products which have X and Y category (for ex: RTW and SHOE). What is the best way to achieve this? Can i create index on array types? or Shall i create a new NodeEntity for Category and create necessary relationship between Product and Category?
Any help for this would be greatly appreciated. Thanks in advance.