NSArray *results = [self.managedObjectContext executeFetchRequest:req error:&error];
---
The array results has only 1 element. But all of my records have tag set to "personality" (without the quotes). In fact when I set the predicate to nil, fetch all records and print the tag I can see that all the tags are set to "personality".
Am I doing something wrong? How do I get all records with tag set to "personality"
Thanks
Hrishi