From 22f0a73130b968e9997af277da540b5f96aaf802 Mon Sep 17 00:00:00 2001 From: Paul Bailey Date: Thu, 8 Dec 2022 14:31:31 -0600 Subject: [PATCH] added luna --- docs/subscriptions.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/subscriptions.rst b/docs/subscriptions.rst index b1631c3..26e57a4 100644 --- a/docs/subscriptions.rst +++ b/docs/subscriptions.rst @@ -5,6 +5,14 @@ The ``graphene-django`` project does not currently support GraphQL subscriptions several community-driven modules for adding subscription support, and the provided GraphiQL interface supports running subscription operations over a websocket. +## Using Native Asynchronous Django + +`Graphene Luna ` uses Django's built in asynchronous support to +create GraphQL subscriptions. Luna supports ``graphene-django`` version 3.0+. Luna allows you to you to quickly and +easily setup subscriptions in Django. + +## Using Django Channels + To implement websocket-based support for GraphQL subscriptions, you’ll need to do the following: 1. Install and configure `django-channels `_.