-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
I created S3 bucket and "data" folder have all JSON files.
I used gatsby-source-s3 plugin to access JSON files from S3.
I am able to get "allS3Object" using graphQL which return list of all JSON files available on S3 bucket.
{
allS3Object {
edges {
node {
id
}
}
}
}
I need to read individual JSON file to generate static pages using GraphQL & GatsBy.
But not able to read any individual file or Group of schema like all post of blog
for Example
allBlogJson {
edges {
node {
blog {
id
url
title
description
updateddate
}
}
}
}
Please let me know if you have any idea on this.
Metadata
Metadata
Assignees
Labels
No labels