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
I'm trying to use the v3 Products API's, but I need to filter by "id:not_in". As far as I know, Python does not allow colons in variable names. So what is the work-around to this?
I expect that all the filters using a colon will not work.
Expected behavior
I'm trying to use the v3 Products API's, but I need to filter by "id:not_in". As far as I know, Python does not allow colons in variable names. So what is the work-around to this?
I expect that all the filters using a colon will not work.
The expected result would be a list of products where the IDs are not in the list of IDs.
Actual behavior
id:not_in = "689"
NameError: name 'not_in' is not defined
Steps to reproduce behavior
Use above filter to reproduce.