Skip to content

Instantly share code, notes, and snippets.

@artembykov
Last active October 23, 2017 12:52
Show Gist options
  • Save artembykov/5e0d4d46e8773a24896eaca541b67f1a to your computer and use it in GitHub Desktop.
Save artembykov/5e0d4d46e8773a24896eaca541b67f1a to your computer and use it in GitHub Desktop.
const queryConfig = {
filters: [],
groups: [{
name: 'gender',
limit: 10,
sort: { dir: 'asc', name: 'gender' }
}],
metrics: [
{ name: 'satisfaction', func: 'sum' }
]
};
try {
const data = await fetchData(client, 'My IMPALA Source', queryConfig);
console.log('Received data:', data);
} finally {
client.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment