What are the practical implications of using Object.class as a property type, instead of the other native types (eg. String.class, Integer.class, etc.)?
IIUC Object.class means that a property can take any type as its value. But then my questions are:
1. can Object.class be indexed?
2. if a property can take multiple values, how does querying work if a query for a string but one of the values is actually an integer?