I have a json object of following kind:
{
"contentClass": "Class",
"owner": "Rambo",
"links": {
"Vehicle": "aaaaa", "Vehicle2":"bbbbb"
},
"Date": {
"extendedTypeName": "Date and time",
"type": "DATE",
"name": "Date",
"defaultValue": null,
"value": "2013-08-09T08:07:00.000Z",
"position": 2,
"attributeName": "Date"
}
}
So To get all the records by matching date and one of the link field(vehicle or vehicle1) I created the following view:
function(doc) {
if(doc.contentClass == 'Class') {
if(doc.links) {
for (var linkedTo in doc.links) {
emit([doc.Date.value, doc.links[linkedTo]], null);
}
}
}
}
This function was not working until I swap the values in emit function:
emit([doc.links[linkedTo], doc.Date.value ], null);
Can anyone tell me the reason for this. Also is there any better view for this. Thanks in advance.
When you you use emit(), the first parameter represent the key of your index. if you call the view using startKey and endKey, then these two values should match the indexed key (same order).
for example
is you index key so your startKey and endKey should always use the same format (linkedTo first followed by date).
Also if you use descending order param for your query, do not forget to invert startKey and endKey.