Discovery
const accountService = new wire.data.DataSource("table", {
Provider: {
Server: "query-server"
}
});
if(accountService.allow().discover) {
const options = { table: "sales" };
const entities = await accountService.discoverFieldsAsync(options);
}
Last updated
Was this helpful?