Reactor API でのリソースの検索
Reactor API の /search
エンドポイントを使用すると、保存されたリソースに対して構造化クエリを実行できます。このドキュメントでは、様々な一般的なユースケースでの、様々な検索クエリの例を示します。
NOTE
このガイドを読む前に、 検索エンドポイントガイド を参照し、受け入れられるクエリ構文とその他の使用ガイドラインを確認してください。
基本的なクエリ戦略
以下の例は、API の検索機能を使用するための基本的な概念を示しています。
複数のフィールドをまたぐ検索
検索は、フィールド名にワイルドカードを使用して、複数のフィールドに対して実行できます。例えば、複数の属性フィールドを検索するには、フィールド名として attributes.*
を使用します。
{
"data": {
"query": {
"attributes.*": {
"value": "evar7"
}
}
}
}
IMPORTANT
通常、検索値は、検索するデータのタイプと一致する必要があります。例えば、整数フィールドに対するクエリ値
evar7
は失敗します。複数のフィールドを検索する場合、エラーを避けるためにクエリタイプの要件が緩やかになりますが、望ましくない結果が生じる可能性があります。クエリを特定のリソースタイプに対してスコープ設定する
リクエストで resource_types
を指定することで、特定のリソースタイプに対する検索の範囲を指定できます。例えば、data_elements
と rule_components
を検索するには、次のように指定します。
{
"data": {
"from": 0,
"size": 25,
"query": {
"attributes.display_name": {
"value": "Performance"
}
},
"resource_types": [
"data_elements",
"rule_components"
]
}
}
応答の並べ替え
sort
プロパティを使用して応答を並べ替えることができます。例えば、created_at
で新しい順に並べ替えるには、次のように指定します。
{
"data": {
"from": 0,
"size": 25,
"query": {
"attributes.display_name": {
"value": "Performance"
}
},
"sort": [
{
"attributes.created_at": "desc"
}
],
"resource_types": [
"data_elements",
"rule_components"
]
}
}
一般的な検索例
次の例は、その他の一般的な検索パターンを示しています。
特定の名前を持つリソース
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"attributes.name": {
"value": "Adobe"
}
}
}
}'
「evar7」を参照するすべてのリソース
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"attributes.*": {
"value": "evar7"
}
}
}
}'
「カスタムコード」デリゲート型のデータ要素
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"attributes.delegate_descriptor_id": {
"value": "custom-code"
}
},
"resource_types": ["data_elements"]
}
}'
特定のデータ要素を参照するルールコンポーネント
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"attributes.settings": {
"value": "myDataElement8"
}
},
"resource_types": ["rule_components"]
}
}'
特定のプロパティのルール
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"relationships.property.data.id": {
"value": "PR3cab070a9eb3423894e4a3038ef0e7b7"
}
},
"resource_types": ["rules"]
}
}'
ID でのリソースの検索
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"id": {
"value": "PR3cab070a9eb3423894e4a3038ef0e7b7"
}
}
}
}'
「OR」用語ロジックを使用した検索の実行
curl -X POST \
https://reactor.adobe.io/search \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H "Content-Type: application/vnd.api+json" \
-H 'Accept: application/vnd.api+json;revision=1' \
-d '{
"data": {
"query": {
"attributes.display_name": {
"value": "My Rule Holiday Sale",
"value_operator: "OR"
}
}
}
}'
recommendation-more-help
12b4e4a9-5028-4d88-8ce6-64a580811743