diff --git a/src/entity_builder.rs b/src/entity_builder.rs index a449a52b..d166a54f 100644 --- a/src/entity_builder.rs +++ b/src/entity_builder.rs @@ -176,6 +176,11 @@ impl EntityBuilder where T: BuildTerms { where V: IntoThing> { self.builder.add(self.entity.clone(), a, v) } + + pub fn retract(&mut self, a: KnownEntid, v: V) -> Result<()> + where V: IntoThing> { + self.builder.retract(self.entity.clone(), a, v) + } } pub struct InProgressBuilder<'a, 'c> {