Created
February 23, 2018 12:08
-
-
Save thamenato/faacfda95bd729703dd4a5be82c0ccc4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"total_rows": 2, | |
"indexes": [ | |
{ | |
"ddoc": null, | |
"name": "_all_docs", | |
"type": "special", | |
"def": { | |
"fields": [ | |
{ | |
"_id": "asc" | |
}] | |
} | |
}, | |
{ | |
"ddoc": "_design/poll-mango", | |
"name": "getPoll", | |
"type": "json", | |
"def": { | |
"fields": [{ | |
"ClassName": "asc" | |
}, | |
{ | |
"House": "asc" | |
}, | |
{ | |
"Date": "asc" | |
}], | |
"partial_filter_selector": { | |
"ClassName": { | |
"$eq": "sl_poll" | |
} | |
} | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"selector": { | |
"House.Initials": "CD" | |
}, | |
"fields": [ | |
"ClassName", | |
"Date" | |
], | |
"use_index": "poll-mango" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment