From b63cf4673473e02298a560789f377abc3104581e Mon Sep 17 00:00:00 2001 From: Michel Descoteaux Date: Fri, 23 Aug 2024 15:22:15 -0400 Subject: [PATCH] feat: Add grapqhl in export to postman collection (#2386) --- packages/bruno-app/src/utils/exporters/postman-collection.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/bruno-app/src/utils/exporters/postman-collection.js b/packages/bruno-app/src/utils/exporters/postman-collection.js index 719391f0a..076723748 100644 --- a/packages/bruno-app/src/utils/exporters/postman-collection.js +++ b/packages/bruno-app/src/utils/exporters/postman-collection.js @@ -137,6 +137,11 @@ export const exportCollection = (collection) => { } } }; + case 'graphql': + return { + mode: 'graphql', + graphql: body.graphql + }; } };