You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to Oasis ABNF for OData, not operator must be followed by RWS, a.k.a. a required whitespace.
The library puts no space between not and the following brackets ().
This is a super easy fix, just add a space here: https://github.com/techniq/odata-query/blob/master/src/index.ts#L567-L569
The text was updated successfully, but these errors were encountered:
According to Oasis ABNF for OData,
not
operator must be followed byRWS
, a.k.a. a required whitespace.The library puts no space between
not
and the following brackets()
.This is a super easy fix, just add a space here:
https://github.com/techniq/odata-query/blob/master/src/index.ts#L567-L569
The text was updated successfully, but these errors were encountered: