Ignat Prokopovich
Ignat Prokopovich
I know that for macros does not work global scope `::` It's a pity that in MacOS these functions are declared as macros. I did not know that. I do...
So far, you can not build this web server under MacOS. I do not have a device with this operating system so I can do the porting of the program....
@RyanWarner a fix for this issue is available in version `3.21.4`.
@jezzzm this should be fixed in `v4.1.1`.
@vettloffah I see that you are facing a type mismatch. We have not yet fully developed the type system, as you have already noticed. Try wrapping your query condition in...
Hi @vettloffah I checked that the `where` statement works fine for `products.list`. But only active products are returned, you may be trying to request inactive ones. It looks like there...
@lukifer thank you for report! This problem was fixed in version `4.1.1`. We had some glitches when publishing version `4.1.0` due to which the latest changes were not included. Everything...
@Daniel-Alamezie you can filter orders by account_id this way: ```js async function getOrders(accountId) { const { results } = await swellNode.get('/orders', { account_id: accountId }); return results; } ``` Your...