-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontentful-graphql-example.html
More file actions
55 lines (53 loc) · 1.8 KB
/
contentful-graphql-example.html
File metadata and controls
55 lines (53 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Posts</title>
</head>
<body>
<h1>My Blog</h1>
<div id="blog-container"></div>
<script>
const spaceId = 'your_space_id';
const accessToken = 'your_access_token';
const query = `{
blogPostCollection {
items {
title
slug
body
author
publishedDate
tags
}
}
}`;
fetch(`https://graphql.contentful.com/content/v1/spaces/${spaceId}`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${accessToken}`,
},
body: JSON.stringify({ query }),
})
.then((response) => response.json())
.then((data) => {
const blogContainer = document.getElementById("blog-container");
data.data.blogPostCollection.items.forEach(post => {
const postElement = document.createElement("div");
postElement.innerHTML = `
<h2>${post.title}</h2>
<p><strong>Author:</strong> ${post.author}</p>
<p><strong>Published Date:</strong> ${post.publishedDate}</p>
<p><strong>Tags:</strong> ${post.tags.join(", ")}</p>
<p>${post.body}</p>
<p><strong>Slug:</strong> ${post.slug}</p>
`;
blogContainer.appendChild(postElement);
});
})
.catch(error => console.error('Error fetching content:', error));
</script>
</body>
</html>