Christoph Zwerschke
Christoph Zwerschke
Note that such a hierarchical grouping per directory would also solve #228. My real-world example is [GraphQL-core](https://github.com/graphql-python/graphql-core) where the tests are separate, but grouped in sub-packages for each sub-packages they...
This is already covered by issue #4.
Maybe, in addition to ignoring notes with certain tag(s), it should be also possible to exclude certain folders (e.g. template folders, or a folder dedicated to general checklists).
I just noticed that the built-in "Template" plugin already has a setting for configuring a template folder. Maybe it would suffice to exclude that folder. But in addition to that,...
Came here to suggest the same. I have some notes which are just checklists for certain occations. These are not meant to be active TODO items. A solution would be...
Another similar tool to draw inspiration from: https://apps.timwhitlock.info/unicode/inspect
Note that there is already a middleware implementation in GraphQL-core (see [middleware.py](https://github.com/graphql-python/graphql-core-next/blob/master/src/graphql/execution/middleware.py) and [test_middleware](https://github.com/graphql-python/graphql-core-next/blob/master/tests/execution/test_middleware.py)) where you can steal ideas from.
I think @abhinand-c is right, the test [here](https://github.com/graphql/graphql-js/blob/e171a14c6f19140d8667e8bbfb4237b72b16b2dc/src/utilities/__tests__/coerceInputValue-test.ts#L398-L401) contradicts the above spec. Probably because the spec was changed in 2018 and the test followed the older spec of 2016.
Hi Tom. A real-world example would be [Webware for Python](https://webware-for-python-3.readthedocs.io/en/latest/) which uses WSGI with write callables. You can create and run a demo with Webware for Python as follows: ```sh...
The main problem here is that DBUtils does not support keyword-only parameters for the constructors of its classes. This should be changed, but probably only in the next major version...