Skip to content

Instantly share code, notes, and snippets.

@krhancoc
Created May 23, 2017 17:44
Show Gist options
  • Save krhancoc/e7285ecf4988f7d3992beb52dc17a88e to your computer and use it in GitHub Desktop.
Save krhancoc/e7285ecf4988f7d3992beb52dc17a88e to your computer and use it in GitHub Desktop.
const ValidActions = {
'blips': {
'hook': 'MATCH (n:BLIP)',
'action': (val) => {
return ValidActions.blips[val]();
},
'published': () => {
return 'MATCH (n)-[:Published_to]->(y) WITH y AS n';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment