Skip to content

Commit

Permalink
update query operations
Browse files Browse the repository at this point in the history
  • Loading branch information
demonsh committed May 27, 2022
1 parent cce7d89 commit 1ebd03e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,14 @@ At the moment you have to fill all needed attributes for a specific Inputs, take
Operator int
}
// QueryOperators represents operators for atomic circuits
var QueryOperators = map[string]int{
"$eq": 0,
"$lt": 1,
"$gt": 2,
"$ni": 3,
"$in": 4,
"$noop": NOOP,
"$eq": EQ,
"$lt": LT,
"$gt": GT,
"$in": IN,
"$nin": NIN,
}
```

0 comments on commit 1ebd03e

Please sign in to comment.