@@ -168,7 +168,7 @@ describe("the graphql journey", () => {
168168 return client . graphql
169169 . get ( )
170170 . withClassName ( "Article" )
171- . withBm25 ( { query : "Apple" , properties : [ "title" , "url" ] } )
171+ . withBm25 ( { query : "Apple" , properties : [ "title" , "url" ] } )
172172 . withFields ( "_additional { id }" )
173173 . do ( )
174174 . then ( ( res ) => {
@@ -181,7 +181,7 @@ describe("the graphql journey", () => {
181181 return client . graphql
182182 . get ( )
183183 . withClassName ( "Article" )
184- . withBm25 ( { query : "Apple" , properties : [ "url" ] } )
184+ . withBm25 ( { query : "Apple" , properties : [ "url" ] } )
185185 . withFields ( "_additional { id }" )
186186 . do ( )
187187 . then ( ( res ) => {
@@ -194,7 +194,7 @@ describe("the graphql journey", () => {
194194 return client . graphql
195195 . get ( )
196196 . withClassName ( "Article" )
197- . withHybrid ( { query : "apple" , alpha : 0 } ) // TODO change to Apple
197+ . withHybrid ( { query : "apple" , alpha : 0 } )
198198 . withFields ( "_additional { id }" )
199199 . do ( )
200200 . then ( ( res ) => {
@@ -207,7 +207,7 @@ describe("the graphql journey", () => {
207207 return client . graphql
208208 . get ( )
209209 . withClassName ( "Article" )
210- . withHybrid ( { query : "apple " , alpha : 0.5 } ) // TODO change to Apple
210+ . withHybrid ( { query : "Apple " , alpha : 0.5 } )
211211 . withFields ( "_additional { id }" )
212212 . do ( )
213213 . then ( ( res ) => {
@@ -222,7 +222,7 @@ describe("the graphql journey", () => {
222222 return client . graphql
223223 . get ( )
224224 . withClassName ( "Article" )
225- . withHybrid ( { query : "Apple" , alpha : 0.5 , vector : dummyVec300x0 } )
225+ . withHybrid ( { query : "Apple" , alpha : 0.5 , vector : dummyVec300x0 } )
226226 . withFields ( "_additional { id }" )
227227 . do ( )
228228 . then ( ( res ) => {
0 commit comments