import * as fs from 'fs/promises'; import * as path from 'path'; import * as url from 'url'; import { parse } from 'graphql'; const dirname = url.fileURLToPath(new URL('.', import.meta.url)); const persistedOperationsAppPath = path.join( dirname, '..', '..', '..', 'web', 'app', 'src', 'gql', 'persisted-documents.json', ); const persistedOperationsDistPath = path.join(dirname, '..', 'dist', 'persisted-operations.json'); const persistedOperations: Record = JSON.parse( await fs.readFile(persistedOperationsAppPath, 'utf-8'), ); await fs.writeFile( persistedOperationsDistPath, JSON.stringify( Object.fromEntries( Object.entries(persistedOperations).map(([hash, document]) => [ hash, parse(document, { noLocation: true, }), ]), ), null, 2, ), );