-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver-side.js
81 lines (76 loc) · 1.93 KB
/
server-side.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/** @format */
import { gql } from '@apollo/client';
import Head from 'next/head';
import Image from 'next/image';
import styles from '../styles/Home.module.css';
import client from '../apollo-client';
export async function getServerSideProps() {
const { data } = await client.query({
query: gql`
query GetArticles {
articles {
articleId
title
content
author {
username
}
comments {
commentId
message
member {
username
}
childrenComments {
commentId
message
member {
username
}
}
}
}
}
`,
});
return {
props: {
articles: data.articles.slice(0, 2),
},
};
}
export default function Home({ articles }) {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name='description' content='Generated by create next app' />
<link rel='icon' href='/favicon.ico' />
</Head>
<main className={styles.main}>
<h1 className={styles.title}>
Welcome to <a href='https://nextjs.org'>Next.js!</a>
</h1>
<div className='styles.grid'>
{articles.map((article) => (
<div key={article.articleId}>
<h3>{article.title}</h3>
</div>
))}
</div>
</main>
<footer className={styles.footer}>
<a
href='https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app'
target='_blank'
rel='noopener noreferrer'
>
Powered by{' '}
<span className={styles.logo}>
<Image src='/vercel.svg' alt='Vercel Logo' width={72} height={16} />
</span>
</a>
</footer>
</div>
);
}