Sha256: cc8ddb7c44d2b47ea8a4bcfbf0b4d8e916dc224b3f3c2f7e957ccdb11afcdb98
Contents?: true
Size: 292 Bytes
Versions: 1
Compression:
Stored size: 292 Bytes
Contents
# frozen_string_literal: true module Hachi module Clients class Query < Base # # Query # # @param [Hash] payload # # @return [Hash] # def query(**payload) post("/query", json: payload) { |json| json } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hachi-2.0.0 | lib/hachi/clients/query.rb |