I want to convert the following SQL query to Elasticsearch search query. Can anyone help me with this, thanks.
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"
)
);