Last active
September 20, 2018 19:26
-
-
Save sorsaffari/c0c7463f3077eead80bc169bfa837aff to your computer and use it in GitHub Desktop.
Phone Calls | Loading Data: the main function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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