neumino / thinky

JavaScript ORM for RethinkDB
http://justonepixel.com/thinky/
Other
1.12k stars 128 forks source link

getJoin on document #610

Open doomedramen opened 7 years ago

doomedramen commented 7 years ago

It would be great if I could do getJoin on a document.

for example

Author.get('sdgwesd-sdgsdg-sdffsdfs)
.then(author=>{

  author.getJoin({books:true})
  .then(books=>{
  //do stuff
  })

})