Last active
April 22, 2020 03:52
-
-
Save jdubwelch/22fc6361cd65d1324851dad039ac4eec to your computer and use it in GitHub Desktop.
Just some code that i might want to share.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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