Dealing with Odoo version 13, I am attempting to retrieve all rows from my table. What exactly should I include in the argument in order to fetch all strings at once?
This is my code:
var res = rpc.query({
model: 'my model',
method: 'read',
args: [????]
}).then(function (data) {
console.log(data); });
};