UNPKG

629 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 records = await client.RecordsAsync('Articles', { top: 0 });
12 console.log(JSON.stringify(records, null, 2));
13
14 const allRecords = await client.AllRecordsAsync('Articles');
15 console.log(allRecords.length);
16};
17
18main();