@omnigraph/grpc 0.2.0-alpha-20241229114753-3ab870e106a4b2cacdd1a7487ce3eb12026bbf11 → 0.2.0-alpha-20241229115416-4ccc09e0de79929094eb62e42fd3c201756b5355
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cjs/grpcLoaderHelper.js
CHANGED
|
@@ -68,7 +68,7 @@ class GrpcLoaderHelper {
|
|
|
68
68
|
rootJson,
|
|
69
69
|
rootLogger,
|
|
70
70
|
});
|
|
71
|
-
roots.push({ name: rootJsonName, rootJson });
|
|
71
|
+
roots.push({ name: rootJsonName, rootJson: JSON.stringify(rootJson) });
|
|
72
72
|
}
|
|
73
73
|
this.schemaComposer.Query.setDirectives(directives);
|
|
74
74
|
// graphql-compose doesn't add @defer and @stream to the schema
|
package/esm/grpcLoaderHelper.js
CHANGED
|
@@ -64,7 +64,7 @@ export class GrpcLoaderHelper {
|
|
|
64
64
|
rootJson,
|
|
65
65
|
rootLogger,
|
|
66
66
|
});
|
|
67
|
-
roots.push({ name: rootJsonName, rootJson });
|
|
67
|
+
roots.push({ name: rootJsonName, rootJson: JSON.stringify(rootJson) });
|
|
68
68
|
}
|
|
69
69
|
this.schemaComposer.Query.setDirectives(directives);
|
|
70
70
|
// graphql-compose doesn't add @defer and @stream to the schema
|
package/package.json
CHANGED