blob: 886edab2911ffad769c0f011a0ce5b395637c5b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import CircularProgress from '@material-ui/core/CircularProgress';
import React from 'react';
import Timeline from './Timeline';
import { useTimelineQuery } from './TimelineQuery.generated';
const TimelineQuery = ({ id }) => {
const { loading, error, data, fetchMore } = useTimelineQuery({
variables: {
id,
first: 100,
},
});
if (loading) return <CircularProgress />;
if (error) return <p>Error: {error}</p>;
return (
<Timeline ops={data.repository.bug.timeline.nodes} fetchMore={fetchMore} />
);
};
export default TimelineQuery;
|