Last updated 6 months ago
Returns the parent in case the current one is inside another Value; returns None otherwise.
property parent_value: | None
property parent_value:
| None
Query Example
from glider import * def query(): instructions = Instructions().exec(1,1) value = instructions.get_components() print(f"Value: {value[0].expression}") print(f"Parent values: {value[0].parent_value.expression}") return instructions
Output
Value