bartenra

Results 9 issues of bartenra

Snippet from docs: ``` import { command, boolean, flag } from 'cmd-ts'; const myFlag = option({ type: boolean, long: 'my-flag', short: 'f', }); const cmd = command({ name: 'my flag',...

**Describe the bug** When I run ``` graphql coverage ``` or ``` graphql verify ``` without any arguments, the commands silently fail. When I run the first command with my...

### Description Say we have this context signature: ```ts interface ToggleContext { count: number; skip: boolean; } ``` Then this works ```ts entry: assign({ count: (context) => context.count + 1,...

bug
typescript
has workaround

GraphQL Playground has been retired, and will no longer receive updates: https://github.com/graphql/graphql-playground/issues/1143 Down the line, I think it would make sense for Ariadne to switch to GraphiQL because of this.

roadmap
decision needed

I think a call to `queue_declare` is missing here: ![image](https://user-images.githubusercontent.com/77667589/121035311-0a8a3a00-c7ae-11eb-9cdc-1ebbe81c0015.png)

[Ariadne](https://ariadnegraphql.org/) is a GraphQL server implementation for Python that is gaining traction. It uses a Schema-first approach. It would be helpful if VSCode GraphQL could support syntax highlighting of inline...

lsp-server

If I read the documentation correctly, the Composition API is now the preferred way to use vue-i18n. Whereas using the Options API is considered 'legacy'. I think over time all...

Status: Proposal

``` error: TS2739 [ERROR]: Type '{ localAddr: { transport: "tcp"; hostname: string; port: number; }; remoteAddr: { transport: "tcp"; hostname: string; port: number; }; rid: number; close(): void; closeWrite(): Promise;...

We sometimes import non-default imports along default import (the Vue component). ```ts import ContentItemSlideOver, { ContentInput } from '@/views/contentpool/slideOver/ContentItemSlideOver.vue'; ``` In this case, `ContentItemSlideOver.vue` will be reported as unused.