platform/packages/relations
2021-06-14 11:52:58 +08:00
..
lib Cleared static analytics errors 2021-02-16 10:10:09 +08:00
test Fixed test errors 2021-02-21 10:47:23 +08:00
.gitignore Add 'packages/relations/' from commit 'f1d7081f462d497a1d5810356132867158379e79' 2020-02-15 18:44:01 -05:00
.travis.yml Add 'packages/relations/' from commit 'f1d7081f462d497a1d5810356132867158379e79' 2020-02-15 18:44:01 -05:00
LICENSE Updated license 2021-06-14 11:52:58 +08:00
pubspec.yaml Cleared static analytics errors 2021-02-16 10:10:09 +08:00
README.md Add 'packages/relations/' from commit 'f1d7081f462d497a1d5810356132867158379e79' 2020-02-15 18:44:01 -05:00

relations

version 1.0.1 build status

Database-agnostic relations between Angel services.

// Authors owning one book
app.service('authors').afterAll(
    relations.hasOne('books', as: 'book', foreignKey: 'authorId'));

// Or multiple
app.service('authors').afterAll(
    relations.hasMany('books', foreignKey: 'authorId'));

// Or, books belonging to authors
app.service('books').afterAll(relations.belongsTo('authors'));

Supports:

  • hasOne
  • hasMany
  • hasManyThrough
  • belongsTo
  • belongsToMany