Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
0 votes
1 answer
56 views

I have a variation of the problem described here: Using DjangoFilterConnectionField with custom Connection in graphene_django The modified problem is as follows: Lets say I have a Django model class '...
BoomDizzle's user avatar
0 votes
0 answers
20 views

I'm required to sanitize all my inputs coming in via the GraphQL endpoint and remove potential malicious stuff (No the Django build-in mechanism are not enough, it shall be actively removed). As I do ...
Hagi's user avatar
  • 148
0 votes
0 answers
21 views

I have django model named profiles. It has some basic fields and many-to-many field followers. This field contains a list of followers and following peoples class Profile(models.Model): user = ...
Foxyfox's user avatar
0 votes
0 answers
37 views

I have a function that filters a Django queryset on the number of linked objects. Used inside a graphene-django project, it allows me to dynamically create filter fields for a bunch of objects without ...
Chris Hacker's user avatar
2 votes
0 answers
96 views

I've upgraded graphene version from v2.1.8 to v3.0.0 and I'm encountering issues with object initialization. After upgrading, my ObjectType subclasses are no longer properly initialized, and I'm ...
Gagan's user avatar
  • 31
0 votes
1 answer
190 views

I'm new to graphene library and make updating mutation as was in documentation. Also I looked at this video about CRUD : https://youtu.be/C-EfYVXShLE?si=uksgjJEuavU1k9GW I thought, that problem was in ...
AndyFlight's user avatar
0 votes
0 answers
59 views

Django 4.2 together with graphene-django filters is making my query return empty results class ExampleFilterSet(FilterSet): label__name__in = StringInFilter(method="filter_labels") ...
Jolly's user avatar
  • 316
2 votes
1 answer
149 views

So I am using graphene-django==3.1.2, which didn't let me importfrom graphql import ResolveInfo . Therefore, I used from graphql import GraphQLResolveInfo as ResolveInfo However the error I see now is ...
Jolly's user avatar
  • 316
1 vote
1 answer
32 views

I'm using Django + GraphQL to build a backend for my project. I have a User model defined in my models.py which have many fields including for instance email and telephone defined in the following ...
Zeno Dalla Valle's user avatar
2 votes
0 answers
69 views

I'm trying to upgrade graphene-django from 2.15.0 to 3.2.0. After some fixes, I could get it to work, but while testing with the front-end, I start detecting errors of the type: "Variable '$...
IgnatvsNovel's user avatar
1 vote
0 answers
80 views

I'm getting the following error when I attempt to make a GraphQL query using Apollo Client in my React frontend from my Django/Django Rest/Graphene Backend. I have also gotten some CORS errors so I ...
Suerg's user avatar
  • 133
1 vote
0 answers
46 views

In Sentry APM I am able to see that most of the time spent was in the view.render I am assuming that this part is where the result from the db are being formatted but can't understand why it is taking ...
sel_space's user avatar
  • 215
0 votes
0 answers
96 views

I've a django-multitenant SAAS with this tenant model: class Company(TenantModel): name = models.CharField( max_length=100, unique=True ) slug = AutoSlugField( ...
Cristian Rojas's user avatar
2 votes
0 answers
474 views

I'm attempting to use an instance of django-filter's DateTimeFromToRangeFilter in conjunction with a custom FilterSet. However, this does not work when I attempt to do the following: class ...
pdoherty926's user avatar
  • 10.5k
1 vote
0 answers
52 views

TypeError: UserProcessOptionsNode fields cannot be resolved. 'function' object has no attribute '__func__' class UserProcessOptionsNode(DjangoObjectType): client_configuration = GenericScalar() ...
Atom's user avatar
  • 538

15 30 50 per page
1
2 3 4 5
26