Hey,
I have a question when it comes to query with tinydb
imagine i have the following json file:
{
wheel: {
a1: {
size: 21
}
a4: {
size: 13
}
t0: {
size: 3
}
}
}
I want to perform a search with a fixed size in order to retrieve all the wheel types that satisfies this.
Ex: size == 3 and retrieve t0 in this case. I dont have the information about the wheel type only the size itself