pattern_quantified

Function pattern_quantified 

Source
pub fn pattern_quantified(
    from_clause: impl Into<FromClause>,
    quantifier: Option<Quantifier>,
) -> Pattern
Expand description

Create a quantified pattern from a table reference (e.g., for MATCH commands)

Examples:

  • pattern_quantified(table_ref("events"), None) - Simple pattern: events
  • pattern_quantified(table_ref("events"), Some(quantifier_at_least_one())) - Pattern: events+