Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/cookbook/cookbook/ingredients/schema.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from cookbook.ingredients.models import Category, Ingredient
from graphene import AbstractType, Node
from graphene import ObjectType, Node
from graphene_django.filter import DjangoFilterConnectionField
from graphene_django.types import DjangoObjectType

Expand Down Expand Up @@ -28,7 +28,7 @@ class Meta:
}


class Query(AbstractType):
class Query(ObjectType):
category = Node.Field(CategoryNode)
all_categories = DjangoFilterConnectionField(CategoryNode)

Expand Down