Using FQL Lambdas in Array Functions

InstructorChris Biscardi

Share this video with your friends

Send Tweet

Lambdas allow you to use functions like Map or Filter effectively in FQL. In this lesson we should the Lambda syntax by operating on some paginated results.

Paginate(Match(Index("all_customers")))
Map(
  Paginate(Match(Index("all_customers"))),
  Lambda("X", Get(Var("X")))
)