graphene-django

Graphene without Django ORM models

Graphene without Django ORM models Question: what is best practise to integrate Graphene-Django with my Redshift tables without using DjangoObjectType conversion of django model as 1st step, which I don’t have in my case. How I can bind these tables with Graphene in schema.py. class CategoryType(DjangoObjectType): class Meta: model = Category fields = ("id", "name") …

Total answers: 1

GraphQL query returning duplicate results

GraphQL query returning duplicate results Question: I have a GraphQL schema that returns orders and the products that are part of that order. I have added a filter to return only orders that contains products searched for by the user. This filter is done on a icontains. However I have found that if a user …

Total answers: 1