diff --git a/src/stitching/errors.ts b/src/stitching/errors.ts index 3d5f41c1066..79b0449f41c 100644 --- a/src/stitching/errors.ts +++ b/src/stitching/errors.ts @@ -44,7 +44,7 @@ export function relocatedError( } export function createMergedResult(object: any, childrenErrors: ReadonlyArray = []): any { - if (!object) { + if (object == null) { object = { [MERGED_NULL_SYMBOL]: true, };