Skip to content

Instantly share code, notes, and snippets.

@derekperkins
Last active December 29, 2015 01:58
Show Gist options
  • Save derekperkins/7596590 to your computer and use it in GitHub Desktop.
Save derekperkins/7596590 to your computer and use it in GitHub Desktop.
ES or query
***This works as an AND query
$query['conditions'] = [
'has_child' => [
'model' => 'WorkspacePostTag',
'workspace_id' => 2,
'post_id' => 4
]
];
***This OR query breaks
$query['conditions'] = [
'has_child' => [
'model' => 'WorkspacePostTag',
'or' => [
'workspace_id' => 1,
'post_id' => 4
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment