From e0a905af9bce688a6e8f901e5a185ef5ead9b0e0 Mon Sep 17 00:00:00 2001 From: mohanedmashaly Date: Thu, 2 Jul 2026 18:52:06 +0300 Subject: [PATCH] [docs][pipe]Add the limit the pipe can support --- .../content/docs/docs/getting-started/building-pipelines.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/src/content/docs/docs/getting-started/building-pipelines.mdx b/content/src/content/docs/docs/getting-started/building-pipelines.mdx index eb46aa89e..6a096f427 100644 --- a/content/src/content/docs/docs/getting-started/building-pipelines.mdx +++ b/content/src/content/docs/docs/getting-started/building-pipelines.mdx @@ -90,6 +90,8 @@ In the above example, we start with an input value of `5`. The `increment` funct The result is equivalent to `subtractTen(double(increment(5)))`, but using `pipe` makes the code more readable because the operations are sequenced from left to right, rather than nesting them inside out. +Please note that pipe currently support up to 20 functions + ## map Transforms the value inside an effect by applying a function to it.