Tomás Fox

Results 24 comments of Tomás Fox

Having the same issue. I will try to submit a PR.

This issue was fixed by #251. It should be closed.

There are newer versions, but they were not released on bower or npm. You should install them from a git commit hash.

Hi all! I've been working on a library that tries to optimize the query by analyzing the gql query: https://github.com/tfoxy/graphene-django-optimizer Feel free to open issues if your use case doesn't...

graphene-django-optimizer was created as a hotfix to improve the performance of the project I was working while not making the codebase uglier (before this, we were making the optimizations at...

I can contribute. I have two questions before doing anything: * Would these changes go into v2 or v3? * Would we use the same api as `graphene-django-optimizer` or would...

I had the same problems with `.only` when working in graphene-django-optimizer. I decided to only apply `.only` when I'm sure that it will not trigger another query. That means that...

Hi everyone! I created an [npm package](https://www.npmjs.com/package/ffprobe-wasm) a few months back. Repo is here: https://github.com/tfoxy/ffprobe-wasm . It comes with TS definitions. I needed to use ffprobe in browser and Node.js...

This is now mentioned here: https://storybook.js.org/docs/react/essentials/controls#disable-controls-for-specific-properties ```js argTypes: { // remove the prop documentation from the table foo: { table: { disable: true, }, }, }, ``` ```js argTypes: {...

@manavm1990 @FilipePfluck you can overwrite `extractArgTypes` which is the function used to infer all the arg types of a component. ``` function extractArgTypes(component) { // return `argTypes` here } {...