pub trait MutationLogStore: Send + Sync {
// Required method
fn read_after(
&self,
graph_version: GraphVersion,
limit: usize,
) -> StorageFuture<'_, Vec<MutationLogEntry>>;
}Expand description
Mutation log contract consumed by reconcilers and indexers.