hi,
i realised the example shown in dgo library uses transaction
txn := dgraphClient.NewTxn()
defer txn.Discard(ctx)
is there a way that i query or mutate without transaction?
means all mutation should be automatically applied, and if any error occurs, those executed mutate should already applied.
please advice
thank you