distinct()

Get unique elements.

Signature

distinct(): Array<T>

Description

The distinct() method returns the unique elements in the array.

The source array isn’t changed.

Avoid using distinct() with large sets

Avoid using distinct() to process arrays converted from large or unbounded sets that contain 16,000 or more documents.

If a set contains 16,000 or more documents, the query requires pagination. distinct() would only be able to extract unique elements from each page of results.

Instead, retrieve all field values and process them on the client side. See Get unique field values.

Parameters

None

Return value

Type Description

Array

Unique elements in the array.

Examples

[1, 1, 2, 3, 3].distinct()
[
  1,
  2,
  3
]

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!