rules icon indicating copy to clipboard operation
rules copied to clipboard

Generic Rules engine in golang

Results 8 rules issues
Sort by recently updated
recently updated
newest added

Hello, how can i evaluate the value inside array? maybe for some object like this ``` { "data": [ { "key": "val1" }, { "key": "val2" }, ... ] }...

Hi, I'm using this amazing engine in a project that need to apply rules based on date. I'm doing rules like this: `"CurrentDate < 1610016640 and CurrentDate > 1110016640"` It...

enhancement
good first issue

It would be great if basic mathematical operations can be accommodated in the grammar. E.g. x+4 eq 10 x%20 eq 1

Copied the entire module into the v2 subdirectory. Ran `go mod tidy` to make sure I didn't miss changing any imports to v2.

The following are supposed to be working according to README.md but not. @nikunjy `parser.Evaluate("x eq 1 OR x eq 2", map[string]interface{}{"x": 1})` It would be nice to support `||` and...