Channels
Channels table for MSTeams data provider.
テーブル固有の情報
Select
すべてのチーム内のすべてのチャネルを取得するかTeamId を指定することで、Channels テーブルをクエリします。 本製品 は Microsoft Teams API を使用して、以下のカラムと演算子で作成されたWHERE 句条件を処理します。
- TeamId は、'=' およびIN 演算子をサポートします。 他のカラムは、'='、'!='、IN、LIKE、IS、IS NOT 演算子をサポートします。
その他のフィルタはクライアントサイドで本製品 内部で処理されます。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM Channels WHERE TeamId IN ('da838338-4e77-4c05-82a6-79d9f0274511', 'da838338-4e77-4c05-82a6-79d9f0274555') SELECT * FROM Channels WHERE TeamId = 'da838338-4e77-4c05-82a6-79d9f0274511' AND Id = '19:[email protected]' SELECT * FROM Channels WHERE description != 'desc' SELECT * FROM Channels WHERE webUrl LIKE '%teams.microsoft.com/l/channel/%'Note:テーブルがId カラムでフィルタリングされた場合にのみ、summary カラムに値が入力されます。また、このテーブルのsummary カラムではフィルタリングはできません。
Insert
最低でもTeamId およびDisplayName は、チームに新しいチャネルを追加するために必須です。他のフィールドもすべて指定できます。
INSERT INTO Channels (displayName, description, TeamId) VALUES ('a new channel', 'top tasks channel', 'da838338-4e77-4c05-82a6-79d9f0274511')
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | String | False |
The channel's unique identifier. |
TeamId | String | False |
The Team Id. |
CreatedDateTime | Datetime | False |
Timestamp at which the channel was created. |
Description | String | False |
Optional textual description for the channel. |
DisplayName | String | False |
Channel name as it will appear to the user in Microsoft Teams. |
String | False |
The email address for sending messages to the channel. Read-only. | |
IsFavoriteByDefault | Bool | False |
Indicates whether the channel should automatically be marked 'favorite' for all members of the team. Can only be set programmatically with Create team. Default: false. |
MembershipType | String | False |
The type of the channel. Can be set during creation and cannot be changed. Default: standard. |
WebUrl | String | False |
A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. |