bartenra

Results 12 comments of bartenra

The problem was that I didn't have `@graphql-cli/coverage` installed. I believe it should fail with an error message.

Duplicate #1729

``` npm install --legacy-peer-deps pinia ``` seems to work now.

Hello! I ran into this issue today. I understand that Websockets do not have a concept of headers, but neither does it have a concept of cookies, and they are...

Having the same issue with Vue 3. I cannot run `npm install` anymore.

Take a look at https://github.com/omgovich/react-colorful

It's part of Apollo Enterprise now: https://www.apollographql.com/docs/studio/operation-registry/ They ditched this open-source effort: https://github.com/apollographql/persistgraphql > To be honest such requirement sounds like you would want to implement regular restful API instead...

I expect this to work: ```py from typing import Protocol from types import SimpleNamespace class Person(Protocol): @property def name(self) -> str: ... @property def age(self) -> int: ... def get_person()...

I ran into a similar situation today, which boiled down to (see duplicated issue): ```ts type Slot = { id?: string } function needsId(slot: { id: string }) { }...

Here is a workaround for my use case: ```ts function assertField( obj: T, field: Field ): obj is T & { [field in Field]: NonNullable } { if (!obj[field]) false;...