Skip to content

Commit 6955381

Browse files
version 0.7.1
1 parent 55cdd6a commit 6955381

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
weaviate-ruby (0.7.0)
4+
weaviate-ruby (0.7.1)
55
faraday (~> 2.7)
66
graphlient (~> 0.7.0)
77

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ where_obj = '{ path: ["id"], operator: Equal, valueString: "..." }'
175175

176176
client.query.get(
177177
class_name: 'Question',
178-
fields: 'question answer category',
178+
fields: "question answer category _additional { answer { result hasAnswer property startPosition endPosition } }",
179179
limit: "1",
180180
offset: "1",
181181
after: "id",
@@ -194,6 +194,8 @@ client.query.get(
194194
# bm25: ...,
195195

196196
# near_object: ...,
197+
198+
ask: '{ question: "your-question?" }'
197199
)
198200

199201
# Example queries:

lib/weaviate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Weaviate
4-
VERSION = "0.7.0"
4+
VERSION = "0.7.1"
55
end

0 commit comments

Comments
 (0)