December 2018
Beginner to intermediate
796 pages
19h 54m
English
Now, we will take advantage of searches that are configured to check whether a value starts with the specified characters. We will compose and send an HTTP request to retrieve all the pilots whose name starts with 'G'.
The next request uses the search feature that we configured to restrict the search behavior to a starts-with match on the name field for the Drone model:
http ":8000/drones/?search=G"
The following is the equivalent curl command:
curl -iX GET "localhost:8000/drones/?search=G"
The following lines show a sample response with the two drones that match the specified search criteria, that is, those drones whose name starts with 'G'. The following lines show only the JSON response ...
Read now
Unlock full access