Skip to content

Commit

Permalink
Merge pull request #35 from BouyguesTelecom/feat/sort-inputs
Browse files Browse the repository at this point in the history
🔧 Sort inputs alphabetically
  • Loading branch information
arnaud authored Sep 10, 2024
2 parents fe9a07d + 7cb43b3 commit 16f2d63
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/node_modules/@graphql-mesh/merger-stitching/cjs/index.js b/node_modules/@graphql-mesh/merger-stitching/cjs/index.js
index 381e473..951f14d 100644
index 381e473..8b6840d 100644
--- a/node_modules/@graphql-mesh/merger-stitching/cjs/index.js
+++ b/node_modules/@graphql-mesh/merger-stitching/cjs/index.js
@@ -1,5 +1,17 @@
Expand All @@ -20,7 +20,7 @@ index 381e473..951f14d 100644
const stitch_1 = require("@graphql-tools/stitch");
class StitchingMerger {
constructor(options) {
@@ -42,6 +54,12 @@ class StitchingMerger {
@@ -42,6 +54,19 @@ class StitchingMerger {
},
}),
});
Expand All @@ -29,6 +29,13 @@ index 381e473..951f14d 100644
+ Object.keys(unifiedSchema._typeMap).forEach((type) => {
+ unifiedSchema._typeMap[type]._fields = sortKeys(unifiedSchema._typeMap[type]._fields);
+ });
+ // Sort query and mutation inputs alphabetically
+ ['Query', 'Mutation'].forEach((operation) => {
+ const fields = unifiedSchema._typeMap[operation]._fields;
+ Object.keys(fields).filter((field) => fields[field].args).forEach((field) => {
+ fields[field].args.sort((a, b) => a.name.localeCompare(b.name));
+ });
+ });
+
return {
schema: unifiedSchema,
Expand Down

0 comments on commit 16f2d63

Please sign in to comment.