const createStoryNodes = (data, type) => | |
data.map(storyId => { | |
const id = `${type}-${storyId}` | |
const storyNode = { | |
id, | |
parent: null, | |
children: [], | |
internal: { type }, | |
storyId: storyId, | |
item: items.get(storyId), | |
} | |
storyNode.internal.contentDigest = buildContentDigest(storyNode) | |
createNode(storyNode) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment