Skip to content

v0.7.8

Latest
Compare
Choose a tag to compare
@GoranBrkuljan GoranBrkuljan released this 22 Oct 17:15
· 4 commits to main since this release
c9bf372

What's new:

  • feat: add find_all query #54
let users = User::find_all()
    .execute(&db_session)
    .await?
    .try_collect()
    .await?;