File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import debug from 'debug';
6
6
7
7
import initApollo from './initApollo' ;
8
8
9
+ import data from '../data/SampleData' ;
10
+
9
11
const logger = debug ( 'app:withData' ) ;
10
12
logger . log = console . log . bind ( console ) ;
11
13
@@ -64,6 +66,9 @@ export default (ComposedComponent) => {
64
66
65
67
await getDataFromTree ( app ) ;
66
68
69
+ console . log ( "---------------------" )
70
+ console . log ( "DEBUG" )
71
+ console . log ( "---------------------" )
67
72
serverState = {
68
73
apollo : { // Make sure to only include Apollo's data state
69
74
data : apollo . cache . extract ( ) , // Extract query data from the Apollo's store
@@ -83,7 +88,7 @@ export default (ComposedComponent) => {
83
88
// render within `getInitialProps()` above (since the entire prop tree
84
89
// will be initialized there), meaning the below will only ever be
85
90
// executed on the client.
86
- this . apollo = initApollo ( this . props . serverState . apollo . data , {
91
+ this . apollo = initApollo ( data , {
87
92
getToken : ( ) => parseCookies ( ) , // ['connect.sid'],
88
93
} ) ;
89
94
}
You can’t perform that action at this time.
0 commit comments