Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 554 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 554 Bytes

mixpanel-jql

Mixpanel JQL Client

const Client = require('mixpanel-jql');
const client = new Client('mixpanel secret here');

// query data from mixpanel
client.query()
  .codes('function main() {...}') // or .file('./filepath')
  .params({
    //...
  })
  .send()
  .then(result => console.log(result))
  .catch(err => console.log(err));

// generate script
client.query()
  .codes('function main() {...}') // or .file('./filepath')
  .params({
    //...
  })
  .generateScript()
  .then(script => console.log(script));