code:
NebulaConnection graphClient = new NebulaConnection();
await graphClient.OpenAsync("10.0.0.1", 9669);
var authResponse = await graphClient.AuthenticateAsync("root", "12345");
var executionResponse = await graphClient.ExecuteAsync(authResponse.Session_id, "LOOKUP ON IQALOG YIELD IQALOG.ID AS ID,IQALOG.NAME AS NAME;").ToListAsync();
await graphClient.SignOutAsync(authResponse.Session_id);
return executionResponse;
env: .net 6.0
code:
env: .net 6.0