-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Summary
The WHERE clause supports AND chaining (fixed in v0.2.1, issue #1), but does not yet support OR.
Current behaviour
FORAGE "Example"
WHERE sector = "technology"
OR sector = "healthcare" -- ❌ parse error
OR is not recognised in ConditionList.
Expected behaviour
FORAGE "Example"
WHERE sector = "technology"
OR sector = "healthcare" -- ✅ parsed
Grammar reference
In src/parser/grammar.pegjs, ConditionList only chains via AND. Adding OR support (with appropriate precedence — AND binds tighter than OR) would complete the logical operator set.
Priority
Lower priority than WHEN AND (#3) since no published cases have needed OR yet, but worth tracking for completeness.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request