-
-
Notifications
You must be signed in to change notification settings - Fork 158
findIn not work with relation #588
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't workingresolvedIssue have been resolved but not yet releasedIssue have been resolved but not yet released
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingresolvedIssue have been resolved but not yet releasedIssue have been resolved but not yet released
Type
Fields
Give feedbackNo fields configured for issues without a type.
BookModel relation definition:
author is null when using findIn like:
BookModel.query().with('author').findIn([1, 2])and works well with whereIdIn:
BookModel.query().with('author').whereIdIn([1, 2]).get()