Get()
This method gets entities by their IDs from a specific collection.
func (c *Client) Get(ctx context.Context, option QueryOption, callOptions ...grpc.CallOption) (ResultSet, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
QueryOption
This is an interface type. The queryOption
struct types implement this interface type.
You can use the NewQueryOption
function to get the concrete implementation.
NewQueryOption
The signature of this method is as follows:
func NewQueryOption(collectionName string) *queryOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
ResultSet
This is a struct type. You can use the GetColumn
method to get the result values in a specific field.
GetColumn
This method returns the query result in a specific column. The signature is as follows:
func (rs *ResultSet) GetColumn(fieldName string) column.Column
Parameter | Description | Type |
---|---|---|
| Name of the target field. |
|
Return
ResultSet
Example
rs, err := cli.Get(ctx, milvusclient.NewQueryOption("quick_setup").
WithIDs(column.NewColumnInt64("id", []int64{1, 2, 3})))
if err != nil {
// handle error
}
fmt.Println(rs.GetColumn("id"))