diff --git a/packages/hoppscotch-selfhost-web/src/platform/collections/collections.platform.ts b/packages/hoppscotch-selfhost-web/src/platform/collections/collections.platform.ts index 747f67f1b..568c80a36 100644 --- a/packages/hoppscotch-selfhost-web/src/platform/collections/collections.platform.ts +++ b/packages/hoppscotch-selfhost-web/src/platform/collections/collections.platform.ts @@ -168,12 +168,15 @@ function exportedCollectionToHoppCollection( exportedCollectionToHoppCollection(folder, collectionType) ), requests: gqlCollection.requests.map( - ({ v, auth, headers, name, id }) => ({ + ({ v, auth, headers, name, id, query, url, variables }) => ({ id, v, auth, headers, name, + query, + url, + variables, }) ) as HoppGQLRequest[], auth: data.auth,