We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4829cd commit f33b689Copy full SHA for f33b689
1 file changed
README.md
@@ -58,6 +58,14 @@ $points->addPoint(
58
$client->collections('images')->points()->upsert($points);
59
```
60
61
+While upsert data, if you want to wait for upsert to actually happen, you can use query paramaters:
62
+
63
+```
64
+$client->collections('images')->points()->upsert($points, ['wait' => 'true']);
65
66
67
+You can check for more parameters : https://qdrant.github.io/qdrant/redoc/index.html#tag/points/operation/upsert_points
68
69
Search with a filter :
70
71
```php
0 commit comments