aburke85

Results 1 issues of aburke85

I have 2 models defined: ``` Blog: restmod.model("/blog").mix({ posts: { hasMany: 'Post' } }); Post: restmod.model("/posts"); ``` I use a slug as primary key for both models and only the...

question