[Answer]-Django Tastypie – How to get related Resources with a single request

1👍

The answer is the attribute full=True:

ingredients = fields.ToManyField(‘mezzanine_recipes.api.IngredientResource’, ‘ingredients’, full=True)

👤tom

Leave a comment