| PQL currently only supports the null? operator on non-json. When querying json paths, the only operators we have available are =, >, >=, <, <=. This means the operators such as ~, ->, in, and null? are not available. The first three operators we should likely support, but it's potentially questionable whether or not we should support null? on json values as null in postgres may have different semantics or accepted meaning than null in json. Either way, this should have improved documentation. |