Hey guys, great work on CBL!
I have a view with a map/reduce function that returns rows like:
KEY: @[@"A", @"Car", @"2"], VALUE: Something
KEY: @[@"A", @"Car", @"3"], VALUE: Something
KEY: @[@"A", @"Dog", @"3"], VALUE: Something
KEY: @[@"B", @"Dog", @"4"], VALUE: Something
How can I set up the startkey/endkey/key so that the view only returns rows with keys starting with @[@"A", @"Car"] ?
Is there any way to do that, or would I have to have a different reduce function for that?