bartenra
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,...
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.
I think a call to `queue_declare` is missing here: 
[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...
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...
``` 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.