# `Dagger.GeneratorGroup`
[🔗](https://github.com/dagger/dagger/blob/v0.20.8/sdk/elixir/lib/dagger/gen/generator_group.ex#L2)

Dagger.GeneratorGroup

# `t`

```elixir
@type t() :: %Dagger.GeneratorGroup{client: term(), query_builder: term()}
```

# `changes`

```elixir
@spec changes(t(), [{:on_conflict, Dagger.ChangesetsMergeConflict.t() | nil}]) ::
  Dagger.Changeset.t()
```

The combined changes from the last run of the generators

If any conflict occurs, for instance if the same file is modified by multiple generators, or if a file is both modified and deleted, an error is raised and the merge of the changesets will failed.

Set 'continueOnConflicts' flag to force to merge the changes in a 'last write wins' strategy.

# `empty?`

```elixir
@spec empty?(t()) :: {:ok, boolean()} | {:error, term()}
```

Whether the generated changeset from the last run is empty or not

# `id`

```elixir
@spec id(t()) :: {:ok, Dagger.GeneratorGroupID.t()} | {:error, term()}
```

A unique identifier for this GeneratorGroup.

# `list`

```elixir
@spec list(t()) :: {:ok, [Dagger.Generator.t()]} | {:error, term()}
```

Return a list of individual generators and their details

# `run`

```elixir
@spec run(t()) :: t()
```

Execute all selected generators

---

*Consult [api-reference.md](api-reference.md) for complete listing*
