type
Node
type Node struct {
Kind ExpressionKind
Comparison *Comparison
Children []Node
}A detached recursive expression snapshot for stores and transports.
KindExpressionKind- The Kind value.
Comparison*Comparison- The Comparison value.
Children[]Node- The Children value.
Mutating a Node does not mutate the originating Expression. Adapters should treat malformed nodes as invalid input, not silently broaden a query.