Jordan Stout
Jordan Stout
> as I understand 15.3 released more than 2 years ago, is it still popular? 15.4 already support it. Polyfill works though, so not really a huge deal.
Sure, yeah I stated they don't need to be reactive and in most cases aren't.
@dummdidumm exactly what I was thinking. determining if something MIGHT need to truly be interactive via re-assignment, etc would be ideal
I'm having the same issue as well. `{ state: 'pending' }`
Yeah, I just installed this and it doesn't work either.
Query Planner doesn't work in chrome / brave browser I noticed. Opened in safari and it works.
```typescript interface JSON { parse( text: string, reviver?: (this: any, key: string, value: any) => any, ): T; } ```
@mattpocock true; understood. I live in a world where I consume self-owned APIs and messages that are type-safe at the point of having to parse it, so my brain went...
Here's how Symfony does it in the PHP world: https://symfony.com/doc/current/reference/constraints/UniqueEntity.html
In the `class-validator` world: ```typescript @IsUnique(WidgetRepository, ["name", "tag"]) export class Widget { @IsString() name: string; @IsString() @IsLowercase() tag: string; } ``` `@IsUnique` would use something like `typedi` to get the...