This repository was archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathindex.tsx
97 lines (90 loc) · 2.21 KB
/
index.tsx
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
type Maybe<T> = T | null;
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
};
export type HackerNews = {
topStories?: Maybe<Array<Maybe<Story>>>;
};
export type Query = {
hn?: Maybe<HackerNews>;
};
export type Story = {
id?: Maybe<Scalars["String"]>;
title?: Maybe<Scalars["String"]>;
url?: Maybe<Scalars["String"]>;
};
export type GetHackerNewsTopStoriesQueryVariables = {};
export type GetHackerNewsTopStoriesQuery = { __typename?: "Query" } & {
hn: Maybe<
{ __typename?: "HackerNews" } & {
topStories: Maybe<
Array<
Maybe<{ __typename?: "Story" } & Pick<Story, "id" | "title" | "url">>
>
>;
}
>;
};
import gql from "graphql-tag";
import * as React from "react";
import * as ReactApollo from "react-apollo";
export const GetHackerNewsTopStoriesDocument = gql`
query GetHackerNewsTopStories {
hn {
topStories {
id
title
url
}
}
}
`;
export class GetHackerNewsTopStoriesComponent extends React.Component<
Partial<
ReactApollo.QueryProps<
GetHackerNewsTopStoriesQuery,
GetHackerNewsTopStoriesQueryVariables
>
>
> {
render() {
return (
<ReactApollo.Query<
GetHackerNewsTopStoriesQuery,
GetHackerNewsTopStoriesQueryVariables
>
query={GetHackerNewsTopStoriesDocument}
{...(this as any)["props"] as any}
/>
);
}
}
export type GetHackerNewsTopStoriesProps<TChildProps = {}> = Partial<
ReactApollo.DataProps<
GetHackerNewsTopStoriesQuery,
GetHackerNewsTopStoriesQueryVariables
>
> &
TChildProps;
export function withGetHackerNewsTopStories<TProps, TChildProps = {}>(
operationOptions:
| ReactApollo.OperationOption<
TProps,
GetHackerNewsTopStoriesQuery,
GetHackerNewsTopStoriesQueryVariables,
GetHackerNewsTopStoriesProps<TChildProps>
>
| undefined
) {
return ReactApollo.withQuery<
TProps,
GetHackerNewsTopStoriesQuery,
GetHackerNewsTopStoriesQueryVariables,
GetHackerNewsTopStoriesProps<TChildProps>
>(GetHackerNewsTopStoriesDocument, operationOptions);
}