withRelations abstract method
Eagerly loads relations for the query.
final users = await UserModel.q<UserModel>()
.withRelations(['posts'])
.get();
Implementation
QueryBuilderInterface<T> withRelations(List<dynamic> relations);
Eagerly loads relations for the query.
final users = await UserModel.q<UserModel>()
.withRelations(['posts'])
.get();
QueryBuilderInterface<T> withRelations(List<dynamic> relations);