Last active
February 21, 2020 03:17
-
-
Save Ramko9999/a48f086a1b15dbcf670d3fd19da6f989 to your computer and use it in GitHub Desktop.
TigerGraph Flutter Medium
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
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