属性情報を取得しています。単一の検索条件で複数のフィルターを適用すると、機能しません。しかし、単一のフィルターの場合、それは完全に機能します。
複数のフィルターHTTPリクエスト:
Output:
{
"items": [],
"search_criteria": {
"filter_groups": [
{
"filters": [
{
"field": "attribute_code",
"value": "size",
"condition_type": "eq"
},
{
"field": "attribute_code",
"value": "color",
"condition_type": "eq"
}
]
}
]
},
"total_count": 0
}
しかし、1つのフィルターをヒットすると、サイズと色の両方の結果が得られます。
単一フィルター:
更新:フィルターを試しましたが、まだ結果がありません
{
"items": [],
"search_criteria": {
"filter_groups": [
{
"filters": [
{
"field": "attribute_code",
"value": "color,size",
"condition_type": "in"
}
]
}
]
},
"total_count": 0
}
更新2:別のフィルターで「で」試した
{
"items": [],
"search_criteria": {
"filter_groups": [
{
"filters": [
{
"field": "attribute_code",
"value": "color",
"condition_type": "in"
},
{
"field": "attribute_code",
"value": "size",
"condition_type": "in"
}
]
}
]
},
"total_count": 0
}
更新3:別のフィルターグループで「イン」フィルターを試しました
{
"items": [],
"search_criteria": {
"filter_groups": [
{
"filters": [
{
"field": "attribute_code",
"value": "color",
"condition_type": "in"
}
]
},
{
"filters": [
{
"field": "attribute_code",
"value": "size",
"condition_type": "in"
}
]
}
]
},
"total_count": 0
}
期待される出力と何が得られますか?
—
Alex Paliarush
質問を更新しました
—
nr5
@AlexPaliarushこれについて何か見つけましたか?
—
nr5