Composing requests that filter and order results

We will compose and send an HTTP request to retrieve all the drones whose related drone category ID is equal to 1 and whose value for the has_it_competed field is equal to False. The results must be sorted by name in descending order, and therefore, we specify -name as the value for the ordering query parameter.

The hyphen (-) before the field name indicates that the ordering feature must use descending order instead of the default ascending order.

Make sure you replace 1 with the pk value of the previously retrieved drone category named Quadcopter. The has_it_competed field is a bool field, and therefore, we have to use Python valid bool values (True and False) when specifying the desired ...

Get Learn Web Development with Python now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.