1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const Appbase = require("appbase-js");
const appbaseRef = Appbase({
url: "https://scalr.api.appbase.io",
app: "housing-demo",
credentials: "YnCgVwozV:e9ec5cb0-58d8-4bb0-badc-acaf726661f1"
});
appbaseRef.search({
type: "listing",
body: {
query: {
range: {
price: {
gte: 50,
lte: 100
}
}
}
}
}).then(response => {
console.log("Success: ", JSON.stringify(response.hits, null, '\t'));
}).catch(error => {
console.log("Error: ", error);
});