You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -427,8 +428,8 @@ For unsubscribe you must send a graphql subscription request like this:
427
428
```js
428
429
subscription{
429
430
userSubscription(
430
-
action:UPDATE,
431
-
operation:UNSUBSCRIBE,
431
+
action:UPDATE,
432
+
operation:UNSUBSCRIBE,
432
433
channelId:"GthKdsYVrK!WxRCdJQMPi",
433
434
id:5
434
435
){
@@ -445,9 +446,11 @@ subscription{
445
446
## Change Log:
446
447
447
448
#### v0.1.0-alpha1:
448
-
1. Added support to multiselect choices values for models.CharField with choices attribute, on queries and mutations. Example: Integration with django-multiselectfield package.
449
+
1. Added support to multiselect choices values for models.CharField with choices attribute,
450
+
on queries and mutations. Example: Integration with django-multiselectfield package.
449
451
2. Added support to GenericForeignKey and GenericRelation fields, on queries and mutations.
450
-
3. Added first approach to support Subscriptions with Channels, with subscribe and unsubscribe operations. Using channels-api package. :muscle:
452
+
3. Added first approach to support Subscriptions with Channels, with subscribe and unsubscribe operations.
453
+
Using channels-api package.
451
454
4. Fixed minors bugs.
452
455
453
456
#### v0.0.4:
@@ -461,8 +464,10 @@ subscription{
461
464
462
465
#### v0.0.1:
463
466
1. Fixed bug on DjangoInputObjectType class that refer to unused interface attribute.
464
-
2. Added support to create nested objects like in DRF (http://www.django-rest-framework.org/api-guide/serializers/#writable-nested-representations), it's valid to SerializerMutation and DjangoInputObjectType, only is necessary to specify nested_fields=True on its Meta class definition.
465
-
3. Added support to show, only in mutations types to create objects and with debug=True on settings, inputs autocomplete ordered by required fields first.
467
+
2. Added support to create nested objects like in [DRF](http://www.django-rest-framework.org/api-guide/serializers/#writable-nested-representations),
468
+
it's valid to SerializerMutation and DjangoInputObjectType, only is necessary to specify nested_fields=True on its Meta class definition.
469
+
3. Added support to show, only in mutations types to create objects and with debug=True on settings,
470
+
inputs autocomplete ordered by required fields first.
466
471
4. Fixed others minors bugs.
467
472
468
473
#### v0.0.1-rc.2:
@@ -483,7 +488,8 @@ subscription{
483
488
1. Optimizing imports, fix some minors bugs and working on performance.
484
489
485
490
#### v0.0.1-beta.5:
486
-
1. Repair conflict on converter.py, by the use of get_related_model function with: OneToOneRel, ManyToManyRel and ManyToOneRel.
491
+
1. Repair conflict on converter.py, by the use of get_related_model function with: OneToOneRel,
0 commit comments