我想将以下 SQL 查询转换为 Elasticsearch 搜索查询。谁能帮我解决这个问题,谢谢。
Select sum(total_apples_count)
from basket where ( apple_color in (
select apple_color from apple_details where type = "O") ||
apple_texture in (
select apple_texture from apple_details where type = "O"
)
);