Skip to content

Commit

Permalink
Merge pull request #4 from sennder/fix/caching
Browse files Browse the repository at this point in the history
Fix caching bug
  • Loading branch information
edelvalle authored Apr 26, 2017
2 parents 7879125 + 95b47c9 commit bbe71de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion carbon14/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _resolve(self, level, instances, ctx, ids=None, **kwargs):
else:
if ids is not None:
instances = instances.filter(id__in=ids)
return instances
return instances.all()


class GraphQLView(APIView):
Expand Down

0 comments on commit bbe71de

Please sign in to comment.