Xenioo Database Collection Methods
Connect
var connection = conversation.Connect();Save
connection.Save( collection:string, object:any );var id = connection.Save( "users", {
first_name:'Mario',
last_name:'Rossi',
email:'mario.rossi@someserver.com',
enabled:true
} );
/* the id var now contains the unique id of the object */
Update
Delete
Load
Query
Read
Count
Sum
UniqueValues
Last updated
Was this helpful?