Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Last active June 22, 2019 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/5eb52b3bc1f91a4f4d340439566ba48b to your computer and use it in GitHub Desktop.
Save luandevpro/5eb52b3bc1f91a4f4d340439566ba48b to your computer and use it in GitHub Desktop.
import React from 'react';
import gql from 'graphql-tag';
import { useQuery } from 'react-apollo-hooks';
import withAuth from '../lib/withAuth';
const getPosts = gql`
query getPosts($user_id: String!, $offset: Int) {
post(
offset: $offset
limit: 2
order_by: { created_at: desc }
where: { user_id: { _eq: $user_id } }
) {
id
title
description
created_at
user {
id
displayName
email
}
}
}
`;
function Post({ token }) {
const data = useQuery(getPosts, {
variables: {
user_id: token && token['https://hasura.io/jwt/claims']['x-hasura-user-id'],
},
});
if (!token) return <div>Loading ...</div>;
if (data.loading || data.error) {
return <div>Loading...</div>;
}
console.log(data);
return (
<ul>
{data.data.post.map(post => (
<div key={post.created_at}>
<h1>{post.title}</h1>
<p>{post.description}</p>
</div>
))}
<button onClick={() => console.log('pagination')}>refetch</button>
</ul>
);
}
export default withAuth(Post);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment