take()

Get an Set with the first Number of Set values.

Lazy loading:

Yes

Signature

take(count: Number): Set

Description

The take() method takes the first count values from the Set and returns them in an Set. If there are fewer values than count in the Set, all Set values are returned in the Set.

Parameters

Parameter Type Required Description

count

Number

Yes

Number of values that you want to return from the start of the Set.

Return value

Type Description

Set

Set with the first count values from the given set.

Examples

Get the first two documents in the Set of Product documents:

Product.all().take(2)
{
  data: [
    {
      id: "394786008151883842",
      coll: Product,
      ts: Time("2099-04-10T13:35:26.547Z"),
      name: "cups",
      description: "Translucent 9 Oz, 100 ct",
      price: 6.98,
      quantity: 90,
      store: Store("394786008147689538"),
      backorderLimit: 5,
      backordered: false
    },
    {
      id: "394786008153980994",
      coll: Product,
      ts: Time("2099-04-10T13:35:26.547Z"),
      name: "pinata",
      description: "Original Classic Donkey Pinata",
      price: 24.99,
      quantity: 40,
      store: Store("394786008147689538"),
      backorderLimit: 10,
      backordered: false
    }
  ]
}

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!