pub trait MutationBuilder<'de>: Sized {
    type Variables;

    fn build(args: Self::Variables) -> Operation<Self, Self::Variables>;
}
Expand description

Provides a build function on QueryFragments that represent a mutation

Required Associated Types

The type that this mutation takes as variables. May be () if no variables are accepted.

Required Methods

Constructs a mutation operation for this QueryFragment.

Implementors