Loads Application Models (in api/models
) into the Waterline ORM; Integrates with spool-router to
generate Tapestries for routes.
// config/main.ts
import { WaterlineSpool } from '@fabrix/spool-waterline'
export const main = {
// ...
spools: [
// ...other spools
WaterlineSpool
]
}
// api/services/BirthdayService.ts
export class BirthdayService extends Service {
/**
* Finds people with the given birthday.
* @return Promise
* @example {
* name: 'Ludwig Beethoven',
* birthday: Sun Dec 16 1770 00:00:00 GMT-0500 (EST),
* favoriteColors: [
* { name: 'yellow', hex: 'ffff00' },
* { name: 'black', hex: '000000' }
* ]
* }
*/
findPeopleWithBirthday (birthday) {
return this.orm.Person.find({ birthday: birthday })
.populate('favoriteColors')
}
}
We love contributions! Please check out our Contributor's Guide for more information on how our projects are organized and how to get started.