-
Notifications
You must be signed in to change notification settings - Fork 765
Closed
Description
For models
class Category(models.Model):
name = models.CharField(max_length=100)
def __str__(self):
return self.name
class Ingredient(models.Model):
name = models.CharField(max_length=100)
notes = models.TextField()
category = models.ForeignKey(
Category, related_name='ingredients', on_delete=models.CASCADE)
def __str__(self):
return self.name
and schema
class CategoryType(DjangoObjectType):
class Meta:
model = Category
class IngredientType(DjangoObjectType):
class Meta:
model = Ingredient
class Query(object):
all_categories = graphene.List(CategoryType)
all_ingredients = graphene.List(IngredientType)
def resolve_all_categories(self, info, **kwargs):
return Category.objects.all()
def resolve_all_ingredients(self, info, **kwargs):
return Ingredient.objects.select_related('category').all()
I'd expect category type to include ingredients: [IngredientType!]
, but instead I see ingredients: [IngredientType]
. Why is IngredientType
not required? If that relationship returns a queryset with count greater than 0, wouldn't that queryset always contain the model instance?
Metadata
Metadata
Assignees
Labels
No labels