Practice ยท 3 of 3
Task Store: Query
Add list(query, userId) โ returns only the caller's tasks (ownership at the read path!), filtered: query.done === true|false filters on the done flag; query.title substring-matches case-insensitively. Sorted by id ascending. No query => all own tasks.
Difficulty: intermediate
Press Submit to check your solution.
Back to lesson: Practice: In-Memory CRUD โ Practice