UNPKG

566 BJavaScriptView Raw
1const { SquidexClientManager } = require('squidex-client-manager');
2require('dotenv').config();
3
4const main = async () => {
5 const clientSecret = process.env.SQUIDEX_CLIENT_SECRET;
6 const clientId = process.env.SQUIDEX_CLIENT_ID;
7 const url = process.env.SQUIDEX_CONNECT_URL;
8 const appName = process.env.APP_NAME;
9
10 const client = new SquidexClientManager(url, appName, clientId, clientSecret);
11 const deleted = await client.DeleteAsync('Articles', { id: 'cdbcb9f7-f6f6-4a6a-81d9-0c6f9cf385f8' });
12 console.log(JSON.stringify(deleted, null, 2));
13};
14
15main();