CK-Yong / gaip-net

Library for implementing Google Api Improvement Proposals in C#
MIT License
2 stars 1 forks source link

Fix: Fixed issue where AND/OR expressions with multiple string values were not parsed correctly #21

Closed CK-Yong closed 2 years ago

CK-Yong commented 2 years ago

The mongo tests that were querying for strings had incorrect syntax.

For instance:

foo=bar AND foo!=baz

Should be

foo="bar" AND foo!="baz"