View Source Ash.Flow.Result (ash v2.21.13)

The result of running a flow.

Summary

Types

@type t() :: %Ash.Flow.Result{
  complete?: boolean(),
  errors: [Ash.Error.t()],
  flow: Ash.Flow.t(),
  input: map(),
  notifications: [Ash.Notifier.Notification.t()],
  params: map(),
  result: any() | nil,
  runner_metadata: term(),
  valid?: boolean()
}