Home.js
571 Bytes
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
import React from "react";
import gql from "graphql-tag";
import { useQuery } from "@apollo/react-hooks";
const FETCH_POSTS_QUERY = gql`
{
getPosts {
id
body
createdAt
username
likeCount
likes {
username
}
commentCount
comments {
id
username
createdAt
body
}
}
}
`;
function Home() {
const { loading, error, data } = useQuery(FETCH_POSTS_QUERY);
console.log(data);
return (
<div>
<h1>Home page</h1>
</div>
);
}
export default Home;