Replies: 1 comment
-
|
well there are some naunces with type system that's tricky with macro // join path:
// one -> two -> three -> four -> five
// -> six
let (one, two, three, four, five, six) = one::Entity::find()
.find_also(one::Entity, two::Entity)
.find_also(two::Entity, three::Entity)
.find_also(three::Entity, four::Entity)
.find_also(four::Entity, five::Entity)
.find_also(one::Entity, six::Entity)
.one(db)
.await?
.unwrap(); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
A similar approach with the following code can better extend associative queries.
#2518
Beta Was this translation helpful? Give feedback.
All reactions