Module: BinaryEdge::Client::Action::Stats
Instance Method Summary collapse
-
#stats(query, type:, order:) ⇒ Array
Statistics of recent events for the given query.
Instance Method Details
#stats(query, type:, order:) ⇒ Array
Statistics of recent events for the given query.
16 17 18 19 20 21 22 23 24 |
# File 'lib/binaryedge/clients/actions/stats.rb', line 16 def stats(query, type:, order:) params = { query: query, type: type, order: order } _get("/#{base_path}/search/stats", params) { |json| json } end |