We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2282de4 commit aa0e5daCopy full SHA for aa0e5da
packages/rescript-relay/src/utils.js
@@ -79,6 +79,12 @@ function traverse(
79
continue;
80
}
81
82
+ if (currentObj[key] && currentObj[key].BS_PRIVATE_NESTED_SOME_NONE >= 0) {
83
+ newObj = getNewObj(newObj, currentObj);
84
+ newObj[key] = currentObj[key];
85
+ continue;
86
+ }
87
+
88
var shouldConvertRootObj =
89
typeof instructions["r"] === "string" &&
90
fullInstructionMap[instructions["r"]];
0 commit comments