Azure Cosmos DB Core (SQL) API アカウントをデータ ソースとして使用するアプリケーションを開発しています。
次の表に示すように、最も順位の高い上位 5 つの果物を表示するレポートを作成する必要があります。

集約されたデータを含むコレクションはすでに存在します。以下はサンプルドキュメントです。
{
"名前": "リンゴ",
"タイプ": ["フルーツ"、"エキゾチック"]、
「注文」: 10000
}
レポートのデータを取得するために使用できる 2 つのクエリはどれですか?それぞれの正解は完全な解決策を示します。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:B,D
ARRAY_CONTAINS returns a Boolean indicating whether the array contains the specified value. You can check for a partial or full match of an object by using a boolean expression within the command.
Incorrect Answers:
A: Default sorting ordering is Ascending. Must use Descending order.
C: Order on Orders not on Type.