-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Hi!
Is there a way to create a cell with id?
What i expected, because it's mimicking propel:
var myBook = bookstore.books()
.setId(1)
.setTitle('Cold Winds')
.save();But that obviously not the way how it works now.
Temporarily i added a method named create that just sends record as POST request instead of PUT, so i do:
var myBook = bookstore.books(1)
.setTitle('Cold Winds')
.create();It works fine, but maybe there is a better way?
Thanks!
Metadata
Metadata
Assignees
Labels
No labels