From 1ebd03ea5583407480fec5ec3f6a73e7dcc11855 Mon Sep 17 00:00:00 2001 From: Dmytro Sukhyi Date: Fri, 27 May 2022 11:43:10 +0300 Subject: [PATCH] update query operations --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7de5482..4105691 100644 --- a/README.md +++ b/README.md @@ -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, } ```