interface
Store
type Store interface {
Begin(context.Context) (Transaction, error)
}Starts atomic transactions for operations.
Beginfunc(context.Context) (Transaction, error)- The Begin value.
All operation-engine reads and mutations, including read-only operations, run through a transaction.