Jayden Windle

Results 10 issues of Jayden Windle

Currently it appears that when defining a subscription the return type annotation must be set to `typing.AsyncGenerator[str, None]`, like so: ```python @strawberry.type class Subscription: @strawberry.subscription async def time(self, info) ->...

enhancement
good first issue
Hacktoberfest

Now that `graphene-subscriptions` has been out in the wild for a little while, I've noticed a number of common stumbling blocks and areas for improvement. Many thanks to everyone who...

This PR fixes #6 by allowing users to manually control which Channel Layers groups a subscribed client is added to, and which groups subscription events are broadcast over. The consumer...

It would be awesome to not have to manually define created, updated and deleted subscriptions for each Django model type. Instead, we could have a `DjangoModelSubscription` class that takes in...

Right now `graphene-subscriptions` isn't compatible with the default GraphiQL setup that ships with `graphene`. This is often confusing for new users (see #1). It would be awesome if this library...

good first issue

A number of users have run into issues where the default subscription signals aren't fired properly when they connect them to their app. I've also run into a number of...

Since Django 3.0 supports ASGI out of the box, this library doesn't necessarily need to rely on Django Channels as a dependency for newer Django projects. Instead, we could create...

See pinax/pinax-templates#2. Fixes #15

Moves the templates from pinax-points to this project to prepare for pinax-points v1.0.0 release. These templates are a little different than templates from most other pinax apps as they are...