I can be able to store the data in Couchbase Lite, but when i try to retrieve the data, i was not able to the get the output, as a result i am getting null value.Below is the code,
CBLQueryResult * result = self.data[indexPath.row];
NSString*name = [result stringForKey:@"fromEmail"];
‘self.data’ were retrieved array from Couchbase Lite, i am supposed to get a value in ‘name’ , but i was getting null value.