We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc6f97a commit bf829beCopy full SHA for bf829be
lib/typesense/collections.rb
@@ -13,8 +13,8 @@ def create(schema)
13
@api_call.post(RESOURCE_PATH, schema)
14
end
15
16
- def retrieve
17
- @api_call.get(RESOURCE_PATH)
+ def retrieve(options = {})
+ @api_call.get(RESOURCE_PATH, options)
18
19
20
def [](collection_name)
lib/typesense/version.rb
@@ -1,5 +1,5 @@
1
# frozen_string_literal: true
2
3
module Typesense
4
- VERSION = '1.0.0'
+ VERSION = '1.1.0'
5
0 commit comments