This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fetch from "isomorphic-fetch"; | |
const token = ""; // use your access token here | |
const time = "2023-01-04T18:00:00.000Z"; | |
const debug = false; | |
const fetchFromExportApi = async (updatedAfter = null) => { | |
let fullData = []; | |
let nextPageCursor = null; |