diff --git a/compiler/crates/schema/src/in_memory.rs b/compiler/crates/schema/src/in_memory.rs index 5d43b9b8b9982..f8cd518579a06 100644 --- a/compiler/crates/schema/src/in_memory.rs +++ b/compiler/crates/schema/src/in_memory.rs @@ -193,6 +193,9 @@ impl Schema for InMemorySchema { if name == self.strongid_field_name { return Some(self.strongid_field); } + if name == self.is_fulfilled_field_name { + return Some(self.is_fulfilled_field); + } } let fields = match parent_type {