Skip to content

Commit c1b7bf8

Browse files
committed
Fix concrete resolution macro
1 parent 89b3c4c commit c1b7bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ macro_rules! graphql_interface {
244244
}
245245
)*
246246

247-
panic!("Concrete type not handled by instance resolvers on {}", $outname);
247+
return Ok($crate::Value::null());
248248
};
249249

250250
( @resolve_into_type, $buildargs:tt, ) => {

0 commit comments

Comments
 (0)