-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathApp.res
More file actions
21 lines (21 loc) · 776 Bytes
/
Copy pathApp.res
File metadata and controls
21 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@react.component
let make = () =>
<ApolloClient.React.ApolloProvider client=Apollo.client>
<h2> {"Fetching Data with Hooks"->React.string} </h2>
<h4> {"Simple Query"->React.string} </h4>
<Query_OverlySimple />
<h4> {"Typical Query"->React.string} </h4>
<Query_Typical />
<h4> {"Lazy Query"->React.string} </h4>
<Query_Lazy />
<h4> {"Mutation"->React.string} </h4>
<Mutation />
<h4> {"Subcription"->React.string} </h4>
<Subscription />
<h4> {"Query with Subscription for More"->React.string} </h4>
<Query_SubscribeToMore />
<h2> {"Fetching Data Directly with the Client"->React.string} </h2>
<ClientBasics />
<h2> {"Fragments"->React.string} </h2>
<Query_Fragments />
</ApolloClient.React.ApolloProvider>