Skip to content

Instantly share code, notes, and snippets.

@jdubwelch
Last active April 22, 2020 03:52
Show Gist options
  • Select an option

  • Save jdubwelch/22fc6361cd65d1324851dad039ac4eec to your computer and use it in GitHub Desktop.

Select an option

Save jdubwelch/22fc6361cd65d1324851dad039ac4eec to your computer and use it in GitHub Desktop.
Just some code that i might want to share.
<?php
class Foo
{
private function test()
{
$query['body']['aggs'] = [
'avg_price_per_month' => [
'date_histogram' => [
'field' => 'metaFields.soldDate',
'interval' => 'month',
'format' => 'M/d/YYYY'
],
[
'aggs' => [
'terms' => [ 'field' => 'mlsPtID' ],
'aggs' => [
'average_price' => [
'avg' => [
'field' => 'coreFields.soldPrice'
]
]
]
]
]
]
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment