Ecto.Query.recursive_ctes
You're seeing just the function
recursive_ctes
, go back to Ecto.Query module for more information.
Enables or disables recursive mode for CTEs.
According to the SQL standard it affects all CTEs in the query, not individual ones.
See with_cte/3
on example of how to build a query with a recursive CTE.