File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ client : {
3
+ service : {
4
+ name : 'now playing app' ,
5
+ url : 'http://localhost:4000/graphql' ,
6
+ } ,
7
+ includes : [ './app/src/**/graphql.ts' ] , // array of glob patterns
8
+ excludes : [ './app/**/src/generated/**' ] ,
9
+ } ,
10
+ } ;
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export const NowPlaying = () => {
14
14
return (
15
15
< Carousel title = "Now Playing" >
16
16
{ movies . map ( ( movie ) => (
17
- // TODO: fix this type
18
17
< MoviePoster movie = { movie } key = { movie . id } />
19
18
) ) }
20
19
</ Carousel >
Original file line number Diff line number Diff line change 1
1
import { gql } from '@apollo/client' ;
2
2
3
- // TODO: create fragment
3
+ // TODO: create fragment for movie object
4
4
5
5
export const NOW_PLAYING = gql `
6
6
query nowPlaying {
You can’t perform that action at this time.
0 commit comments