Skip to content

Commit

Permalink
doc: Added missed C#, Go snippet (#1175)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anush008 authored Sep 18, 2024
1 parent 3f607e7 commit 81067d7
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion qdrant-landing/content/documentation/concepts/points.md
Original file line number Diff line number Diff line change
Expand Up @@ -1399,6 +1399,27 @@ client
.get();
```

```csharp
await client.DeleteVectorsAsync("{collection_name}", ["text", "image"], [0, 3, 10]);
```

```go
import (
"context"

"github.com/qdrant/go-client/qdrant"
)

client.DeleteVectors(context.Background(), &qdrant.DeletePointVectors{
CollectionName: "{collection_name}",
PointsSelector: qdrant.NewPointsSelector(
qdrant.NewIDNum(0), qdrant.NewIDNum(3), qdrant.NewIDNum(10)),
Vectors: &qdrant.VectorsSelector{
Names: []string{"text", "image"},
},
})
```

To delete entire points, see [deleting points](#delete-points).

### Update payload
Expand Down Expand Up @@ -2569,4 +2590,4 @@ In this case, the API will return the result only after the operation is finishe
"status": "ok",
"time": 0.000206061
}
```
```

0 comments on commit 81067d7

Please sign in to comment.