If I understand it correctly, global variables as defined in TigherGraph only have the scope within the same query. Is there a way to create global variables with scope of all queries. For example, below is the psudo code what I am trying to accomplish:
bool config_loaded = False;
create query load_config() {
...load configuration
config_loaded = True;
}
create query run_test() {
if config_loaded == False then
load_config()
end;
... run my tests
}