I am getting an error of TypeError: data.events is not iterable when using fetch to retrieve JSON data from an API. 
I am pretty sure it is in my handling of the JSON in for (const event of data.events) from the below code but I am pulling short on finding a fix.
const data = fetch(url, {
    method: 'post',
    headers: new Headers({
        Authorization: 'Bearer ' + bearerToken,
       'Content-Type': 'application/json'
    })
});
for (const event of data.events) {
    let fileNode;
    try {
        fileNode = await createRemoteFileNode({
            url: logo.original.url,
            cache,
            store,
            createNode,
            createNodeId
         });
    } catch (error) {
        console.warn('error creating node', error);
    }
}
The JSON when requested in Postman is returned as
{
    "pagination": {
        ...
    },
    "events": [
        {
            "name": "Example One",
            "logo": {
                "original": {
                    "url": "exampleURL"
                }
            }
        },
        {
            "name": "Example Two",
            "logo": {
                "original": {
                   "url": "exampleURL"
                }
            }
        }
    ],
    "location": {
        ...
    }
}
The goal is to createRemoteFileNode for each event from logo.original.url
 
    