Comment on page
Query an Alias
Here we will show you how you retrieve a single document behind an alias.
var options = {};
api.getAlias('aboutUs', options)
.then(result => {
// futher implementation
})
.catch(err => {
throw err;
})
Last modified 5yr ago