build a way for queries to switch to 'optional by default' mode, which acts the same as adding ? to all assignment statements & object literal entries
in this new mode, add support for ! to indicate required values
a couple of options:
- add triple-dash comment to top of query, e.g.
--- optional
- context chain modifier, e.g.
set my_var = @optional -> {
all,
entries,
nullable,
except!: #this .selector
}
build a way for queries to switch to 'optional by default' mode, which acts the same as adding
?to all assignment statements & object literal entriesin this new mode, add support for
!to indicate required valuesa couple of options:
--- optional