Skip to content

Instantly share code, notes, and snippets.

@sorsaffari
Last active September 20, 2018 19:26
Show Gist options
  • Save sorsaffari/c0c7463f3077eead80bc169bfa837aff to your computer and use it in GitHub Desktop.
Save sorsaffari/c0c7463f3077eead80bc169bfa837aff to your computer and use it in GitHub Desktop.
Phone Calls | Loading Data: the main function
async function buildPhoneCallGraph(inputs) {
const grakn = new Grakn("localhost:48555");
const session = grakn.session("phone_calls");
for (input of inputs) {
await loadDataIntoGrakn(parsingInput, session);
}
session.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment