Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- exp7
- create database by clicking the Create Database
- click create document and insert these
- 1.
- {
- "_id": "emp001",
- "_rev": "1-4925af87993caff1b00be1b60c71332c",
- "dept": "Engineering",
- "name": "John Doe",
- "status": "Active"
- }
- 2.
- {
- "_id": "emp002",
- "_rev": "1-4585267c72159e424735a38988983169",
- "dept": "Marketing",
- "name": "Jane Smith",
- "status": "Active"
- }
- 3.
- {
- "_id": "emp003",
- "_rev": "1-96594d82fd7b38820862522a67ea65ea",
- "dept": "CSE",
- "name": "Alice Johnson",
- "status": "Inactive"
- }
- 4.
- {
- "_id": "emp004",
- "_rev": "1-dfcbef12fd7bf9ed79ba0c907fd08f92",
- "dept": "Sales",
- "name": "Bob Brown",
- "status": "Active"
- }
- Now click Run a query with mango
- edit it
- {
- "selector": {
- "dept": "Sales"
- }
- }
- Run query
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement