Skip to content

Instantly share code, notes, and snippets.

@Ramko9999
Last active February 21, 2020 03:17
Show Gist options
  • Save Ramko9999/a48f086a1b15dbcf670d3fd19da6f989 to your computer and use it in GitHub Desktop.
Save Ramko9999/a48f086a1b15dbcf670d3fd19da6f989 to your computer and use it in GitHub Desktop.
TigerGraph Flutter Medium
final client = await GraphClient.getInstance("YOUR TOKEN","YOUR GRAPH NAME", "YOUR SERVER INFORMATION");
/*
For example, if my domain was "https://flutter-test.i.tgcloud.io:14240/#/home" with my graph name called "demo_graph"
Here is what my client paramters would look like
*/
String token = "12345678900";
final client = await GraphClient.getInstance(token, "demo_graph", "flutter-test.i.tgcloud.io:9000");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment