File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/ROOT/pages/directives Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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----
319319type 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----
380380type 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}]) {
You can’t perform that action at this time.
0 commit comments