Paul Gilmartin
Paul Gilmartin
Hmm, I actually don't think I've ever tried adding two listeners to a single function before. Thanks for raising, i'll have a look at it
Had a quick look at it. I tried adding a second listener to one of the functions in pgpubsub/tests/listeners.py ``` @pgpubsub.post_save_listener(PostTriggerChannel) # new @pgpubsub.post_delete_listener(PostTriggerChannel) def email_author(old: Post, new: Post): author...
@abdi-El @artel1992 Thanks for raising. I need some more information on your set-up before I can diagnose the issue. * What version of Django are you using? Note that Django...
@artel1992 possibly that's related, I'm not sure. What version of graphene-django are you using?
@abdi-El Looking into it, it looks like the issue (https://github.com/graphql-python/graphene-django/issues/1284) on graphene-django which was blocking graph wrap supporting Django >= 4 is now resolved, so I should work on adding...
@abdi-El I would have thought that https://github.com/graphql-python/graphene-django/issues/1387#issuecomment-1427813498 only pertains to graphene-django > 3.0 and that downgrading to 2.15.0 would be enough without the quick fix. I'm glad you managed to...
Hi @eamigo86 ! Thanks for raising this. Currently, graph_wrap does not support ordering/pagination when based off of a DRF API. It does so for an tastypie based API, but I...
Hi @kurte32 ! Thanks for raising this. I was not aware of this, but it looks like this is due to the fact that one of graph-wrap's dependencies, graphene-django, does...
@sachingaikwad123 Thanks for raising. The issue may be due to the fact that I have not managed to get time to add support for graphene-django 3.x.x yet. The latest version...
@carlosdorneles-mb Thanks for your question. Whilst Postgres does officially allow one to set an isolation level of "READ UNCOMMITTED", its internal implementation is identical to that of READ COMMITTED. From...