i am using python with firebase SDK, and have a table named jobs, each record, has a field named client, that is a map, each client has an id field. I would like to query the table for all the jobs that have the client with a certain id value, I found this explaining for how to query by array members but can't find anything about query by values of map fields.
will something like .where("client.id", "==", id) work and be effective? how can I do this query in an effective way? create index maybe?
enter code here