I would like to query the objects in my collection such as a given value must belong to the values in the stringArray
stringArray is the name of the field for each Obejct that contains a list of Strings
the strucutre of my collection in mongodb is
Object1
{
field1
field2
stringArray[2]
0 String0
1 String1
}
Object2
{
field1
field2
stringArray[3]
0 String0
1 String1
2 String2
}
}
My query is:
Query query = new Query();
query.addCriteria(
Criteria.where(theValueIamlookingFor).in("stringArray")
);
return mongoTemplate.find(query, myObject.class);
So far, it hasn't worked.
Any ideas ?
Think you have just flipped there order. Please try:
Criteria.where("stringArray").in(theValueIamlookingFor)
instead of the above