1.0.1 • Published 3 years ago
bonsaif-query v1.0.1
bonsaif-query.js
bonsaif-query t is a library to connect to bonsaif apis
Installation
npm install bonsaif-query
Examples
We have several examples on the website. Here is the first one to get you started:
const query= require('bonsaif-query');
const options= {
endpoint: '',
user: '',
password: '',
db: ''
};
// Execute
let rs = await query({options, sys:'', query:''});
while (rs.next()){
let Field= rs.get('Field');
}