So I am trying to pull in some data from Hygraph in a new Next JS application, I recieve the error of Error: Cannot read properties of undefined (reading 'map').
I am new to both these technologies and cannot find a solutions, for reference I create a new Next JS application and imported graphql and graphql-request and the following code is inside the page.js file inside the app folder.
import styles from './page.module.css'
import { GraphQLClient, gql } from 'graphql-request'
const graphcms = new GraphQLClient(
"https://api-eu-west-2.hygraph.com/v2/xxxxxxxxxxxxxx/master"
);
const QUERY = gql`
{
articles {
createdAt
id
publishedAt
released
slug
title
updatedAt
coverPhoto {
url
}
content {
html
}
}
}
`;
export async function getStaticProps(){
const {articles} = await graphcms.request(QUERY);
return {
props: {
articles,
},
revalidate: 10,
}
}
export default function Home({articles}) {
return (
<main className={styles.main}>
{articles.map((article) => (
<h1>{article.title}</h1>
))}
</main>
)
}
Any help on this issue would be much appreciated.
Screen shot showing error is here: Error picture
Updated error output: New Error Picture
You need to create a token in your hygraph, its on the same page where your api is. Make sure to add all permissions. Then your code should look like that instead:
Hope this helps