🎉 Try the public beta of the new docs site at algolia.com/doc-beta! 🎉
API Reference / API Parameters / unretrievableAttributes
Type: list of strings
Engine default: [] (no attribute is unretrievable)
Parameter syntax
'unretrievableAttributes' => [
  'attribute'
]

Can be used in these methods:

About this parameter

List of attributes you don’t want the engine to retrieve at query time.

Preventing particular attributes from being retrieved may be particularly important for security or business reasons. Some attributes may be helpful for ranking or other technical purposes but should never be seen by your users, for example, total sales, permissions, and other private information. This setting guarantees this.

There’s no limit to the number of attributes in the list, but having many attributes slows down calls to getSettings. This can make the Algolia dashboard slower and less responsive.

Usage notes

This setting is ignored if the query is authenticated with the admin API key.

Using the dashboard

You can also add and remove these unretrievable attributes from the dashboard: Indices > Configuration > Search behavior > Retrieved attributes.

Under Unretrievable attributes:

  • Click Add an Attribute to select and add an attribute to the list
  • Click the trash icon to remove an attribute from the list.

Examples

Make some attributes unretrievable

1
2
3
4
5
$index->setSettings([
  'unretrievableAttributes' => [
    'total_number_of_sales'
  ]
]);
Did you find this page helpful?