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
const Appbase = require("appbase-js");
// Create appbase instance to use methods
const appbaseRef = Appbase({
url: "https://scalr.api.appbase.io",
app: "housing-demo",
credentials: "YnCgVwozV:e9ec5cb0-58d8-4bb0-badc-acaf726661f1"
});
// Full-text search query on `name` field
appbaseRef.search({
type: "listing",
body: {
query: {
match: {
name: "cozy studio"
}
}
}
}).then(response => {
console.log("Success: ", JSON.stringify(response.hits, null, '\t'));
}).catch(error => {
console.log("Error: ", error);
});