Carson Full

Results 78 comments of Carson Full

From my understanding that type definition linked above becomes much nicer with variadic types in TS 4.0 (releasing in a month). https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/#variadic-tuple-types Having strict types with arrays instead of (or...

Reopening because I'm rewriting this code right now

Ok due to BC and time this isn't going to happen for 3.0. But in the mean time you can do this: ``` twig {{ app.filesystem.image('foo://derp.png') }} ``` Be advised...

You can switch to YTM in the toolbar menu. ![Screen Shot 2020-07-07 at 12 58 15 PM](https://user-images.githubusercontent.com/932566/86822760-a61ca300-c051-11ea-8f3c-b65c24a0887e.png) That doesn't help GPM at all though. I'll try wiping settings & reinstall.

Can confirm that wiping settings & reinstalling does do the trick.

I'm also in the same boat. I'm puzzled how the driver can know when I'm ready to consume more records. Every database I've worked with has the _pull-based_ approach where...

Maybe a new function `assert_many()` to force the cardinality. Though it wouldn't be an assertion. Does ```edgeql with multi users := ``` do the trick? Oh that's not valid syntax....

`select multi users`? That isn't valid syntax either. I think that only works inside of a shape. This works: ```edgeql select { multi u := users } ``` not very...

Kinda a breaking change, which is why tests are failing. generator doesn't know to use updated driver types. Thoughts?

I'm not sure how related this is to NestJS. I was able to work around this by doing ```ts author: AuthorModel & {}; ``` To prevent the compiler from saving...