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;
  })

Available query options:

Last updated