MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / find_with_linked_recursive

Method find_with_linked_recursive

src/query/join.rs:160–165  ·  view source on GitHub ↗

Recursive self-join with CTE

(self, l: L)

Source from the content-addressed store, hash-verified

158 #[doc(hidden)]
159 /// Recursive self-join with CTE
160 pub fn find_with_linked_recursive<L>(self, l: L) -> Select<E>
161 where
162 L: Linked<FromEntity = E, ToEntity = E>,
163 {
164 find_linked_recursive(self, l.link())
165 }
166}
167
168impl<E, F> SelectTwo<E, F>

Callers

nothing calls this directly

Calls 2

find_linked_recursiveFunction · 0.85
linkMethod · 0.45

Tested by

no test coverage detected