Function value

  • Simplify value where clause.

    Type Parameters

    • T extends Value = Value

    Parameters

    • table: string

      Table name.

    • predicate: Predicate<T>

      Value predicate.

    Returns FilterDescriptor

    Filter descriptor.

    The complete where clause would be:

    q.where(f => f.on('alias').where(ValuePredicate.of(predicate)))
    

    This is equivalent to:

    where('alias', predicate)