UNPKG

528 BJavaScriptView Raw
1const { SquidexClientManager } = require('../src/index');
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 record = await client.FindOne('Articles', 'title', 'Hello Squidex');
12 console.log(JSON.stringify(record, null, 2));
13};
14
15main();