Skip to content

Instantly share code, notes, and snippets.

@j00bar
Last active August 29, 2015 14:06
Show Gist options
  • Save j00bar/30f89e352ff0c134fcb2 to your computer and use it in GitHub Desktop.
Save j00bar/30f89e352ff0c134fcb2 to your computer and use it in GitHub Desktop.
def photoset_as_json(photoset_id):
# ...
photoset_obj = PhotoSet.objects.get(pk=photoset_id).select_related('owner').prefetch_related('photo')
dict_[photos] = [photo_as_json(p) for p in photoset_obj.photo_set.all()]
dict_[owner] = user_as_json(photoset_obj.owner)
# ...
return dict_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment