@graphql-mesh/compose-cli 1.4.13-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82 → 1.4.13-alpha-20250825160924-e4a2ca65fbae04929a0e97cd75f9dbd8de0d6479

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.
@@ -96,7 +96,10 @@ async function getComposedSchemaFromConfig(config, logger) {
96
96
  }
97
97
  return (0, graphql_1.print)(subgraph.typeDefs);
98
98
  }
99
- const result = (0, fusion_composition_1.composeSubgraphs)(subgraphConfigsForComposition);
99
+ const result = (0, fusion_composition_1.composeSubgraphs)(subgraphConfigsForComposition, {
100
+ ignoreSemanticConventions: config.ignoreSemanticConventions,
101
+ alwaysAddTransportDirective: false,
102
+ });
100
103
  if (result.errors?.length) {
101
104
  logger.error(`Failed to compose subgraphs`);
102
105
  for (const error of result.errors) {
@@ -93,7 +93,10 @@ export async function getComposedSchemaFromConfig(config, logger) {
93
93
  }
94
94
  return print(subgraph.typeDefs);
95
95
  }
96
- const result = composeSubgraphs(subgraphConfigsForComposition);
96
+ const result = composeSubgraphs(subgraphConfigsForComposition, {
97
+ ignoreSemanticConventions: config.ignoreSemanticConventions,
98
+ alwaysAddTransportDirective: false,
99
+ });
97
100
  if (result.errors?.length) {
98
101
  logger.error(`Failed to compose subgraphs`);
99
102
  for (const error of result.errors) {
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@graphql-mesh/compose-cli",
3
- "version": "1.4.13-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82",
3
+ "version": "1.4.13-alpha-20250825160924-e4a2ca65fbae04929a0e97cd75f9dbd8de0d6479",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"
7
7
  },
8
8
  "dependencies": {
9
9
  "@commander-js/extra-typings": "^14.0.0",
10
- "@graphql-mesh/fusion-composition": "0.8.12-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82",
11
- "@graphql-mesh/include": "0.3.8-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82",
10
+ "@graphql-mesh/fusion-composition": "^0.8.11",
11
+ "@graphql-mesh/include": "^0.3.7",
12
12
  "@graphql-mesh/string-interpolation": "^0.5.8",
13
- "@graphql-mesh/types": "0.104.8-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82",
14
- "@graphql-mesh/utils": "0.104.8-alpha-20250825140658-988f735d5b841746038b8f3fd125b97353823c82",
13
+ "@graphql-mesh/types": "^0.104.7",
14
+ "@graphql-mesh/utils": "^0.104.7",
15
15
  "@graphql-tools/code-file-loader": "^8.1.7",
16
16
  "@graphql-tools/graphql-file-loader": "^8.0.5",
17
17
  "@graphql-tools/load": "^8.0.1",