Variable.data
Returns the canonical name of the variable.
Query Example
from glider import *
def query():
state_variables = (
StateVariables()
.exec(5)
)
print(state_variables[0].data)
return state_variablesExample Output

Last updated