Currently CollectionStore.AddTo()
method only supports adding one item at the time to a collection.
We could improve this by changing the signature
type CollectionStore interface {
AddTo(col vocab.IRI, it vocab.Item) error
// to
AddTo(col vocab.IRI, items ...vocab.Item) error