id get null when call get method in loopback 4 code example
Example 1: loopback model find by id
let _m = await Model.findById(id);
Example 2: loopback find http query
/accounts?filter[where][name]=John&filter[limit]=3
let _m = await Model.findById(id);
/accounts?filter[where][name]=John&filter[limit]=3