json-server
json-server copied to clipboard
Full text search is not working
I have this server.json file:
{ "transactions" : [ { "id": 1, "description": "Desenvolvimento de site", "type": "income", "category": "Venda", "price": 14000, "createdAt": "2025-02-14T19:19:17.664Z" }, { "id": 2, "description": "Sushi", "type": "outcome", "category": "Alimentação", "price": 200, "createdAt": "2025-02-14T20:19:17.664Z" }, { "id": 3, "description": "Ar condicionado", "type": "outcome", "category": "Casa", "price": 3000, "createdAt": "2025-03-14T10:19:17.664Z" } ] }
but when I search for http://localhost:3000/transactions?q=Sushi, it returns all the results, not just the one with 'Sushi' in it.