Update authorization.rst

Someone probably forgot to change `CategoryNode`, from the previous tutorial, to `PostNode`.
This commit is contained in:
eyal0803 2018-02-23 20:59:19 +02:00 committed by GitHub
parent dbd3957a9f
commit d98d2a6a73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ define a resolve method for that field and return the desired queryset.
from .models import Post
class Query(ObjectType):
all_posts = DjangoFilterConnectionField(CategoryNode)
all_posts = DjangoFilterConnectionField(PostNode)
def resolve_all_posts(self, args, info):
return Post.objects.filter(published=True)
@ -79,7 +79,7 @@ with the context argument.
from .models import Post
class Query(ObjectType):
my_posts = DjangoFilterConnectionField(CategoryNode)
my_posts = DjangoFilterConnectionField(PostNode)
def resolve_my_posts(self, info):
# context will reference to the Django request