DSL to create 'is greater than' relational condition
static Cond<ValType> gt<ValType>(Field<ValType> field, ValType value) => Cond<ValType>(field, Op.Gt, value);