pub fn pattern_quantified(
from_clause: impl Into<FromClause>,
quantifier: Option<Quantifier>,
) -> PatternExpand description
Create a quantified pattern from a table reference (e.g., for MATCH commands)
Examples:
pattern_quantified(table_ref("events"), None)- Simple pattern:eventspattern_quantified(table_ref("events"), Some(quantifier_at_least_one()))- Pattern:events+