We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a list call like this:
client.Product.ListAsync(opts => opts.AddFilter(p => p.ShipFromAddressID != null);
The resulting API call looks like this:
/products?ShipFromAddressID=!
"Not null" should translate to *, so we actually want this:
*
/products?ShipFromAddressID=*
The text was updated successfully, but these errors were encountered:
@tmenier On the flip-side of this, should something like
client.Product.ListAsync(opts => opts.AddFilter(p => p.ShipFromAddressID == null);
Translate to
/products?ShipFromAddressID=!*
?
Sorry, something went wrong.
Agree. I guess to say this slipped off my radar would be an understatement.
No branches or pull requests
Given a list call like this:
The resulting API call looks like this:
"Not null" should translate to
*
, so we actually want this:The text was updated successfully, but these errors were encountered: