This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Simple dictSQL to match on one column using the equal operator. val1 contains name of column/attribute name of prefix to match while val2 contains the value it should match using the specified operator. | |
dictSQL = { | |
'val1': 'description', | |
'operator': 'equals', | |
'val2': 'bar' | |
} | |
Expands to: | |
description = 'bar' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query_parts.append({ | |
'operator': 'or', | |
'val1': { | |
'operator': 'or', | |
'val1': { | |
'operator': 'or', | |
'val1': { | |
'operator': 'or', | |
'val1': { | |
'operator': 'regex_match', |
NewerOlder