func (collectionClient) Get(
ctx context.Context,
datasetID uuid.UUID,
name string,
) (*datasets.Collection, error)
Get a dataset by its slug.
Parameters
The name of the collection
Returns
The created collection object.
collection, err := client.Collections.Get(ctx,
datasetID,
"My-collection",
)
Errors
The specified dataset does not exist.