Alexandre Bodin 29cb475d83 wip
2021-06-24 09:09:29 +02:00

11 lines
213 B
TypeScript

import type { Strapi } from './typings';
function main(strapi: Strapi) {
const r = strapi.query('restaurant').findOne({
select: ['id', 'description'],
where: {
$and: [{ id: '1' }],
},
});
}