Hi All,
I am new to TigerGraph. Today i was trying to Establish Initial Connection of my pytigergraph colab with my cluster which i created in tigergraph cloud.
Can anyone tell me how do we get the hostname for the free cluster which i created??
i was trying to run it by copying it from others colab
Imports
import pyTigerGraph as tg
import json
import pandas as pd
Connection parameters
hostName = “https://gsql-101.i.tgcloud.io”
userName = “user_1”
password = “XYZ”
conn = tg.TigerGraphConnection(host=hostName, username=userName, password=password, graphname=“MyGraph”)
print(“Connected”)
but even the connection details are wrong i still see the output as Connected. Not sure why