Skip to content

Commit

Permalink
add keyword to domain agg query
Browse files Browse the repository at this point in the history
  • Loading branch information
Paige Gulley committed Aug 6, 2024
1 parent 8f12836 commit 97010b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ def overview_query(self):
}
},
"lang": {"terms": {"field": "language.keyword", "size": 100}},
"domain": {"terms": {"field": "canonical_domain", "size": 100}},
"domain": {
"terms": {"field": "canonical_domain.keyword", "size": 100}
},
"tld": {"terms": {"field": "tld", "size": 100}},
},
"track_total_hits": True,
Expand Down

0 comments on commit 97010b5

Please sign in to comment.