Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 301f6cb

Browse files
authored
Merge pull request #2 from kamilkisiela/make-it-work
Fix few issues
2 parents 1d1d352 + bf17724 commit 301f6cb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

public/docs/_examples/heroes-graphql/ts/src/app/hero-detail.component.1.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ActivatedRoute } from '@angular/router';
44
import { Location } from '@angular/common';
55

66
import { Apollo, ApolloQueryObservable } from 'apollo-angular';
7-
import { Subscription } from 'rxjs/Subscription';
7+
import { ISubscription } from 'rxjs/Subscription';
88
import gql from 'graphql-tag';
99

1010
import { Hero } from './hero';
@@ -17,7 +17,7 @@ import { Hero } from './hero';
1717
export class HeroDetailComponent implements OnInit {
1818
hero: Hero;
1919

20-
private heroSubscription: Subscription;
20+
private heroSubscription: ISubscription;
2121
private heroObservable: ApolloQueryObservable<any>;
2222

2323
constructor(

public/docs/_examples/heroes-graphql/ts/src/app/hero-detail.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ActivatedRoute } from '@angular/router';
44
import { Location } from '@angular/common';
55

66
import { Apollo, ApolloQueryObservable } from 'apollo-angular';
7-
import { Subscription } from 'rxjs/Subscription';
7+
import { ISubscription } from 'rxjs/Subscription';
88
import gql from 'graphql-tag';
99

1010
import { Hero } from './hero';
@@ -18,7 +18,7 @@ import { ApolloQueryResult } from 'apollo-client';
1818
export class HeroDetailComponent implements OnInit {
1919
hero: Hero;
2020

21-
private heroSubscription: Subscription;
21+
private heroSubscription: ISubscription;
2222
private heroObservable: ApolloQueryObservable<any>;
2323

2424
constructor(

public/docs/_examples/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
"@angular/upgrade": "2.4.5",
4949
"angular-in-memory-web-api": "~0.2.4",
5050
"apollo-angular": "^0.12.0",
51-
"apollo-client": "0.10.0",
51+
"apollo-client": "1.0.0-rc.5",
5252
"core-js": "^2.4.1",
5353
"graphql": "^0.9.1",
5454
"graphql-subscriptions": "^0.3.1",
55-
"graphql-tag": "^1.3.1",
55+
"graphql-tag": "^1.3.2",
5656
"graphql-tools": "^0.10.1",
5757
"lodash": "^4.17.4",
5858
"rxjs": "5.0.1",

0 commit comments

Comments
 (0)