8464fc70fe
* updated fetch script * fixed input too long error failing in cypress/vercel
23 lines
747 B
JavaScript
23 lines
747 B
JavaScript
/* eslint-disable */
|
|
require('dotenv').config({ path: '.env.production' })
|
|
const { exec } = require('child_process')
|
|
const dataConfig = require('./relay.config')
|
|
const thegraphConfig = require('./relay_thegraph.config')
|
|
/* eslint-enable */
|
|
|
|
function fetchSchema(url, outputFile) {
|
|
exec(
|
|
`get-graphql-schema --h Origin=https://app.uniswap.org ${url} | tee ${outputFile}.temp`,
|
|
(error, stdout, stderr) => {
|
|
if (error || stderr) {
|
|
console.log(`Failed to fetch schema from ${url}`)
|
|
} else if (stdout) {
|
|
exec(`mv ${outputFile}.temp ${outputFile}`)
|
|
}
|
|
}
|
|
)
|
|
}
|
|
|
|
fetchSchema(process.env.THE_GRAPH_SCHEMA_ENDPOINT, thegraphConfig.schema)
|
|
fetchSchema(process.env.REACT_APP_AWS_API_ENDPOINT, dataConfig.schema)
|