Aadam Zocolo

Results 11 comments of Aadam Zocolo

The extra attribute would work, but truly I see it as redundant to the `description=` parameter in the decorator. The only reason I thought it would be a good idea...

> I think there should be a schema-wide toggle that enables the feature, but is disabled by default: > > ```python > schema = Schema(...) > schema.config.docstring_descriptions = True >...

This is an equivalent (taken from one of the example classes) that I imagine what the use of some sort of field decorator may look like: **Original example** ```python3 from...

My first-draft implementation ```python3 class FieldDecorator(Field): """ FieldDecorator is a class used to make a property-style attribute a Graphene field. Warning! This class shouldn't be used as a decorator itself!...

In my opinion, features missing in release could be mitigated by better support for installing from GitHub. Both NPM and Yarn offer ways to install from git, but this package...

> I'm going to try [GraphQL Playground](https://www.npmjs.com/package/graphql-playground-middleware-express) instead for a development frontend. @NickKelly1, it seems that GraphQL Playground still is unconfigurable to use another subscription fetcher. It still uses `subscriptions-transport-ws`....

If you need to track changes on JSON data, consider the [JSON Patch](https://github.com/Starcounter-Jack/JSON-Patch) mechanism. I started to use this for history edits, only storing the patches and using this lib...

Just small implementation idea here, would love this to be a scroll-able / navigate-able list with check-boxes (space bar) instead of a bunch of _yes/no_ prompts. [Dialoguer](https://github.com/mitsuhiko/dialoguer/blob/master/examples/multi_select.rs) looks like a...

@4gboframram's fix did not solve the issue for me. Any ideas on more diagnosis? Can I change the log level to a **DEBUG** or **TRACE** level to see more verbose...

Yup, I didn't have a default device in `aplay -l` likely due to a malformed config file. After deleting my config file at `/etc/asound.conf` and re-creating with the default card...