getDataConnectorTypes

CRM Analytics データコネクタタイプのコレクションを取得します。

構文 

1import { LightningElement, api, wire } from "lwc";
2import { getDataConnectorTypes } from "lightning/analyticsWaveApi";
3
4export default class GetDataConnectorTypes extends LightningElement {
5  @wire(getDataConnectorTypes, {})
6  onGetDataConnectorTypes({ data, error }) {
7    if (error) {
8      console.log("getDataConnectorTypes() ERROR:", error);
9    } else if (data) {
10      console.log("getDataConnectorTypes() RESPONSE:", data.types);
11    }
12  }
13}

CRM Analytics API リソース 

1GET /wave/dataConnectorTypes

getDataConnectorTypes は、この CRM Analytics API リソースを使用します。

パラメータ 

パラメータは必要ありません。

戻り値 

The Japanese Summer '24 guide is now live

日本語の Summer '24 ガイドが公開されました! 「Component Reference (コンポーネントリファレンス)」は、以前と同様にコンポーネントライブラリにあります。