Łukasz Jagodziński

Results 144 comments of Łukasz Jagodziński
trafficstars

Hmm that was probably caused by the fact that it's not possible to `insertAt` documents that are already saved and have ID. So in such situations I'm returning `false` and...

There is already such a feature implemented. The method name is getModifiedValues On Thu, Jun 13, 2019, 10:29 PM Nathan Schwarz wrote: > Hi, > > I'd like to suggest...

Nice, I didn't know that decorators are going to appear in future ES versions. I will add this package to the list of community packages.

I could probably add support for decorators in class definition so that anyone could attach to some decorator event and add custom functionality. However, as support for decorators right now...

I see your point but, it would probably be a good way of implementing it but for now I will just add it to the list of feature to implement...

The problem is probably in not importing all the classes on the server. Remember that you have to import classes not only on the client but also on the server,...

But `CampaignStatusEnum` is not global, so you have to import it in both client and server. Let's imagine this situation. All classes are global on both client and server and...

OK so please create minimal reproduction repository so I will be able to tell if you're missing something or it's a problem with Astronomy. But first let's check what is...

Code works properly, so the problem is on your side. One thing you're doing wrong is mixing imports and globals. You should decide which way of programming you choose. I...