Skip to content

Commit 85ba7ec

Browse files
rsill-neo4jmjfwebb
andauthored
Apply suggestions from code review
Co-authored-by: Michael Webb <[email protected]>
1 parent 895ba21 commit 85ba7ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ROOT/pages/directives/indexes-and-constraints.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ input VectorIndexInput {
296296
"""(Required) The name of the vector index."""
297297
indexName: String!
298298
"""(Required) The name of the embedding property on the node."""
299-
property: String!
299+
embeddingProperty: String!
300300
"""(Required) The name of the query."""
301301
queryName: String
302302
"""(Optional) The name of the provider."""
@@ -318,7 +318,7 @@ Perform a nearest neighbor search by passing a vector to find nodes with a vecto
318318
----
319319
type Product @vector(indexes: [{
320320
indexName: "productDescriptionIndex",
321-
property: "descriptionVector",
321+
embeddingProperty: "descriptionVector",
322322
queryName: "searchByDescription"
323323
}]) {
324324
id: ID!
@@ -379,7 +379,7 @@ Requires credentials for the plugin.
379379
----
380380
type Product @vector(indexes: [{
381381
indexName: "productDescriptionIndex",
382-
property: "descriptionVector",
382+
embeddingProperty: "descriptionVector",
383383
provider: OpenAI, # Assuming this is configured in the server
384384
queryName: "searchByPhrase"
385385
}]) {

0 commit comments

Comments
 (0)