You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
411 B

#!/usr/bin/env node
const pathOr = require('ramda/src/pathOr');
let input = [];
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', (data) => {
input.push(data);
});
process.stdin.on('end', () => {
const str = input.join('');
const events = JSON.parse(str);
let uniquePages = [];
console.log(JSON.stringify(events.map(({ __typename, ...event }) => event)));
});