This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree 3 files changed +6
-6
lines changed
heroes-graphql/ts/src/app
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { ActivatedRoute } from '@angular/router';
4
4
import { Location } from '@angular/common' ;
5
5
6
6
import { Apollo , ApolloQueryObservable } from 'apollo-angular' ;
7
- import { Subscription } from 'rxjs/Subscription' ;
7
+ import { ISubscription } from 'rxjs/Subscription' ;
8
8
import gql from 'graphql-tag' ;
9
9
10
10
import { Hero } from './hero' ;
@@ -17,7 +17,7 @@ import { Hero } from './hero';
17
17
export class HeroDetailComponent implements OnInit {
18
18
hero : Hero ;
19
19
20
- private heroSubscription : Subscription ;
20
+ private heroSubscription : ISubscription ;
21
21
private heroObservable : ApolloQueryObservable < any > ;
22
22
23
23
constructor (
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { ActivatedRoute } from '@angular/router';
4
4
import { Location } from '@angular/common' ;
5
5
6
6
import { Apollo , ApolloQueryObservable } from 'apollo-angular' ;
7
- import { Subscription } from 'rxjs/Subscription' ;
7
+ import { ISubscription } from 'rxjs/Subscription' ;
8
8
import gql from 'graphql-tag' ;
9
9
10
10
import { Hero } from './hero' ;
@@ -18,7 +18,7 @@ import { ApolloQueryResult } from 'apollo-client';
18
18
export class HeroDetailComponent implements OnInit {
19
19
hero : Hero ;
20
20
21
- private heroSubscription : Subscription ;
21
+ private heroSubscription : ISubscription ;
22
22
private heroObservable : ApolloQueryObservable < any > ;
23
23
24
24
constructor (
Original file line number Diff line number Diff line change 48
48
"@angular/upgrade" : " 2.4.5" ,
49
49
"angular-in-memory-web-api" : " ~0.2.4" ,
50
50
"apollo-angular" : " ^0.12.0" ,
51
- "apollo-client" : " 0.10.0 " ,
51
+ "apollo-client" : " 1.0.0-rc.5 " ,
52
52
"core-js" : " ^2.4.1" ,
53
53
"graphql" : " ^0.9.1" ,
54
54
"graphql-subscriptions" : " ^0.3.1" ,
55
- "graphql-tag" : " ^1.3.1 " ,
55
+ "graphql-tag" : " ^1.3.2 " ,
56
56
"graphql-tools" : " ^0.10.1" ,
57
57
"lodash" : " ^4.17.4" ,
58
58
"rxjs" : " 5.0.1" ,
You can’t perform that action at this time.
0 commit comments