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

Commit 9f25ae5

Browse files
committed
docs(cookbook/graphql): More fixes from @kapunahelewong review
Include systemjs config in the docs, changing wording of the article
1 parent dcce97e commit 9f25ae5

8 files changed

+113
-51
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ export class DashboardComponent implements OnInit {
3535
name
3636
}
3737
}
38-
`,
39-
forceFetch: true
38+
`
4039
}).subscribe((queryResult: ApolloQueryResult<{ heroes: Hero[] }>) => {
4140
this.heroes = queryResult.data.heroes.slice(1, 5);
4241
});

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ export class HeroSearchComponent implements OnInit {
6060
search: this.searchTerms
6161
.debounceTime(300) // wait 300ms after each keystroke before considering the term
6262
.distinctUntilChanged() // ignore if next search term is same as previous
63-
},
64-
forceFetch: true
63+
}
6564
});
6665
}
6766
// #enddocregion search

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ <h2>My Heroes</h2>
88
</button>
99
</div>
1010
<!-- #enddocregion add -->
11+
<!-- #docregion render-heroes -->
1112
<ul class="heroes">
12-
<!-- #docregion render-heroes -->
1313
<li *ngFor="let hero of heroes">
1414
<span class="badge">{{hero.id}}</span>
1515
<span>{{hero.name}}</span>
1616
</li>
17-
<!-- #enddocregion render-heroes -->
1817
</ul>
18+
<!-- #enddocregion render-heroes -->
1919
<div *ngIf="selectedHero">
2020
<h2>
2121
{{selectedHero.name | uppercase}} is my hero

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export class HeroesComponent implements OnInit {
4343
}).subscribe((queryResult: ApolloQueryResult<{ heroes: Hero[] }>) => {
4444
this.heroes = queryResult.data.heroes;
4545
});
46-
// #enddocregion query-heroes
4746
}
47+
// #enddocregion query-heroes
4848

4949
// #docregion add
5050
add(name: string): void {

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ export class HeroesComponent implements OnInit {
3939
name
4040
}
4141
}
42-
`,
43-
forceFetch: true
42+
`
4443
}).subscribe((queryResult: ApolloQueryResult<{ heroes: Hero[] }>) => {
4544
this.heroes = queryResult.data.heroes;
4645
});

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import { Apollo } from 'apollo-angular';
88
// #docregion import-graphql-tag
99
import gql from 'graphql-tag';
1010
// #enddocregion import-graphql-tag
11+
// #docregion import-apollo-query-result
1112
import { ApolloQueryResult } from 'apollo-client';
13+
// #enddocregion import-apollo-query-result
1214
import { Hero } from './hero';
1315

1416
@Component({
@@ -39,8 +41,7 @@ export class HeroesComponent implements OnInit {
3941
name
4042
}
4143
}
42-
`,
43-
forceFetch: true
44+
`
4445
}).subscribe((queryResult: ApolloQueryResult<{ heroes: Hero[] }>) => {
4546
this.heroes = queryResult.data.heroes;
4647
});

public/docs/_examples/heroes-graphql/ts/src/systemjs.config.extras.js

+26-10
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,51 @@
33
System.config({
44

55
map: {
6+
// #docregion systemjs-apollo-client-map
7+
// ..
68
'apollo-client': 'npm:apollo-client/apollo.umd.js',
79
'apollo-client-rxjs': 'npm:apollo-client-rxjs/build/bundles/apollo-rxjs.umd.js',
810
'apollo-angular': 'npm:apollo-angular/build/bundles/apollo.umd.js',
911

10-
'graphql': 'npm:graphql',
1112
'whatwg-fetch': 'npm:whatwg-fetch',
13+
'graphql-anywhere': 'npm:graphql-anywhere',
1214
'graphql-tag': 'npm:graphql-tag',
1315
'symbol-observable': 'npm:symbol-observable',
1416
'redux': 'npm:redux/dist/redux.min.js',
17+
// ..
18+
// #enddocregion systemjs-apollo-client-map
19+
20+
// #docregion systemjs-graphql-server-map
21+
// ..
22+
'graphql': 'npm:graphql',
1523
'graphql-tools': 'npm:graphql-tools',
16-
'graphql-anywhere': 'npm:graphql-anywhere',
1724

1825
'deprecated-decorator': 'npm:deprecated-decorator',
1926
'node-uuid': 'npm:node-uuid',
2027
'uuid': 'npm:uuid',
2128
'iterall': 'npm:iterall',
2229

2330
'lodash': 'npm:lodash'
31+
// ..
32+
// #enddocregion systemjs-graphql-server-map
2433
},
2534
packages: {
35+
// #docregion systemjs-apollo-client-packages
36+
// ..
2637
'whatwg-fetch': { main: './fetch.js', defaultExtension: 'js' },
2738
'redux': { format: 'cjs', defaultExtension: 'js' },
2839
'graphql-tag': { main: './index.js', defaultExtension: 'js' },
2940

41+
'graphql-anywhere': {
42+
main: '/lib/src/index.js',
43+
defaultExtension: 'js'
44+
},
45+
'symbol-observable': { main: './index.js', defaultExtension: 'js' },
46+
// ..
47+
// #enddocregion systemjs-apollo-client-packages
48+
49+
// #docregion systemjs-graphql-server-packages
50+
// ..
3051
'graphql': {
3152
main: './index.js',
3253
defaultExtension: 'js',
@@ -43,18 +64,13 @@ System.config({
4364
main: '/dist/index.js',
4465
defaultExtension: 'js'
4566
},
46-
'graphql-anywhere': {
47-
main: '/lib/src/index.js',
48-
defaultExtension: 'js'
49-
},
50-
51-
5267
'deprecated-decorator': { main: '/bld/index.js', defaultExtension: 'js' },
5368
'node-uuid': { main: './uuid.js', defaultExtension: 'js' },
5469
'uuid': { main: './lib/rng-browser.js', defaultExtension: 'js' },
5570
'iterall': { main: './index.js', defaultExtension: 'js' },
56-
'symbol-observable': { main: './index.js', defaultExtension: 'js' },
57-
5871
'lodash': { main: './index.js', defaultExtension: 'js' }
72+
73+
// ..
74+
// #enddocregion systemjs-graphql-server-packages
5975
}
6076
});

public/docs/ts/latest/cookbook/graphql.jade

+78-30
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ include ../_util-fns
6666
.l-sub-section
6767
:marked
6868
You can check out [this](https://www.youtube.com/watch?v=Xx39bv-5ojA&t=1s) talk by [Jeff Cross](https://twitter.com/jeffbcross) and
69-
[Uri Goldshtein](https://twitter.com/UriGoldshtein) that summarizes this part
69+
[Uri Goldshtein](https://twitter.com/UriGoldshtein) that summarizes this part:
70+
71+
iframe(type='text/html' width='560' height='315'
72+
src='https://www.youtube.com/embed/Xx39bv-5ojA'
73+
frameborder='0')
7074

7175
:marked
7276
### Component based API
@@ -219,7 +223,7 @@ a#http-heroes
219223
The full documentation can be found on the [Apollo Client docs website](http://dev.apollodata.com/).
220224

221225
:marked
222-
The starting point for the app is the [Tour of Heroes tutorial](https://github.com/johnpapa/angular2-tour-of-heroes/archive/master.zip) app at its end state.
226+
The starting point for the app is the [Tour of Heroes tutorial](https://github.com/Urigo/quickstart/archive/graphql-start.zip) app at its end state.
223227

224228
This guide shows you how to migrate that app from REST to GraphQL.
225229

@@ -232,6 +236,22 @@ a#http-heroes
232236

233237
code-example(language="sh" class="code-shell").
234238
npm install apollo-client apollo-angular graphql-tag --save
239+
240+
.l-sub-section
241+
:marked
242+
This example uses `system.js` so you need to also add the configuration to it.
243+
With other build systems, the following process will be different and maybe easier.
244+
245+
:marked
246+
Add the following configuration to your `systemjs.config.js` file under the `map` key:
247+
248+
+makeExample('heroes-graphql/ts/src/systemjs.config.extras.js', 'systemjs-apollo-client-map', 'under map: {')
249+
250+
:marked
251+
and the following configuration to your `systemjs.config.js` file under the `packages` key:
252+
253+
+makeExample('heroes-graphql/ts/src/systemjs.config.extras.js', 'systemjs-apollo-client-packages', 'under packages: {')
254+
235255
:marked
236256
Next, initialize the client by creating a new file called `client.ts` and
237257
pasting in the following code:
@@ -245,21 +265,11 @@ code-example(language="sh" class="code-shell").
245265
.l-sub-section
246266
:marked
247267
### To use a different URI for the Apollo Client
248-
You don't need the following code snippet to work through this cookbook,
249-
but it's good to know how to configure the client to use a URI.
268+
For this cookbook we would use the default `/graphql` endpoint,
269+
but it's good to know it is possible to change those settings.
250270
To change the [settings](http://dev.apollodata.com/core/apollo-client-api.html#ApolloClient\.constructor)
251271
of `ApolloClient`, call its constructor with different parameters.
252-
You can alter the endpoint by importing `createNetworkInterface` and configuring the
253-
`networkInterface` property of `ApolloClient` to
254-
use a URI:
255-
256-
+makeExample('heroes-graphql/ts/src/app/client.2.ts', 'network-initialization', 'app/client.ts')
257-
.l-sub-section
258-
:marked
259-
For instructions on running a GraphQL server,
260-
see [Appendix: Setting up a GraphQL server](#server).
261-
The appendix shows you how to run a GraphQL server in-memory
262-
on the client, which is helpful for testing.
272+
Go to the [Apollo Docs](http://dev.apollodata.com/angular2/initialization.html#creating-client) for further resources.
263273

264274
:marked
265275
After initializing the Apollo client, import the `ApolloModule`
@@ -273,27 +283,37 @@ code-example(language="sh" class="code-shell").
273283

274284
+makeExample('heroes-graphql/ts/src/app/app.module.ts', 'apollo-ngmodule', 'app.module.ts (excerpt)')
275285

286+
:marked
287+
Now Apollo is initialized and ready for use in the app.
288+
276289
.l-main-section
277290
<a id="querying"></a>
278291
:marked
279292
## Performing a query
280293

281294
With GraphQL you query a schema, which is organized into types and fields,
282295
that represents the data you can query.
283-
284-
The server for this guide is based on the [Tour of Heroes](ts/latest/tutorial/).
285-
Copy the schema that follows into a file named `in-memory-graphql.ts` in the `app` directory:
286296

287-
:marked
288297
The schema begins with data types and fields followed by the specific queries
289298
you can perform on the data. These are in turn followed by
290299
mutations, which are _actions_ that you
291300
can call on the server, similar to a POST request in REST.
292301

293-
+makeExample('heroes-graphql/ts/src/app/in-memory-graphql.ts', 'graphql-schema', 'app/in-memory-graphql.ts')
302+
Here is an example schema:
303+
304+
+makeExample('heroes-graphql/ts/src/app/in-memory-graphql.ts', 'graphql-schema', 'Tour of heroes schema')
305+
306+
.l-sub-section
307+
:marked
308+
Usually you need to query an existing server.
309+
310+
The server for this guide is based on the [Tour of Heroes](ts/latest/tutorial/) app.
311+
312+
In order to create the GraphQL server for this example, follow the instructions on
313+
[Appendix: Setting up a GraphQL server](#server).
294314

295315
:marked
296-
To start querying data, begin by importing `Apollo` into `heroes.component.ts`,
316+
Once you have a server, to start querying data, begin by importing `Apollo` into `heroes.component.ts`,
297317
and injecting it into the constructor:
298318
+makeExample('heroes-graphql/ts/src/app/heroes.component.ts', 'import-apollo', 'heroes.component.ts (excerpt)')
299319
+makeExample('heroes-graphql/ts/src/app/heroes.component.ts', 'inject-apollo', 'heroes.component.ts (excerpt)')
@@ -305,6 +325,11 @@ code-example(language="sh" class="code-shell").
305325

306326
+makeExample('heroes-graphql/ts/src/app/heroes.component.ts', 'import-graphql-tag', 'heroes.component.ts')
307327

328+
:marked
329+
In order to specify the TypeScript type of the data that is recieved, import `ApolloQueryResult` from `apollo-client`:
330+
331+
+makeExample('heroes-graphql/ts/src/app/heroes.component.ts', 'import-apollo-query-result', 'import type')
332+
308333
:marked
309334
To query data with the Apollo Client, pass a GraphQL query with the
310335
data and structure that you want to the `Apollo` `watchQuery` function.
@@ -436,8 +461,9 @@ figure.image-display
436461
:marked
437462
## Appendix: Setting up a GraphQL server
438463

439-
Running the server in the browser helps you start using
440-
GraphQL on your frontend without having a GraphQL backend.
464+
This example shows how to run a GraphQL in the browser but running a GraphQL server on
465+
Node.js or in the browser is very similar.
466+
441467
If you don't have the option of running GraphQL on the server,
442468
this method makes it possible to still use GraphQL in your app with the
443469
benefits for not needing to sync multiple REST requests and join logic
@@ -459,9 +485,31 @@ figure.image-display
459485
It allows you to write a GraphQL schema as a string and make it executable.
460486
In a terminal window, issue the following command:
461487

488+
.l-sub-section
489+
:marked
490+
This example uses `system.js` so you need to also add the configuration to it.
491+
With other build systems, or when running on Node, the following process will be different and
492+
maybe easier.
493+
462494
code-example(language="sh" class="code-shell").
463495
npm install graphql-tools --save
464496

497+
.l-sub-section
498+
:marked
499+
This example uses `system.js` so you need to also add the configuration to it.
500+
With other build systems, or when running on Node, the following process will be different and
501+
maybe easier.
502+
503+
:marked
504+
Add the following configuration to your `systemjs.config.js` file under the `map` key:
505+
506+
+makeExample('heroes-graphql/ts/src/systemjs.config.extras.js', 'systemjs-graphql-server-map', 'under map: {')
507+
508+
:marked
509+
and the following configuration to your `systemjs.config.js` file under the `packages` key:
510+
511+
+makeExample('heroes-graphql/ts/src/systemjs.config.extras.js', 'systemjs-graphql-server-packages', 'under packages: {')
512+
465513
:marked
466514
Next, create a file called `in-memory-graphql.ts` in the `app` directory
467515
and paste in the following schema:
@@ -486,6 +534,13 @@ code-example(language="sh" class="code-shell").
486534
Hence, the GraphQL server consists of _resolver
487535
functions_ that correspond to the _types_ of the schema.
488536

537+
In some server functions you use the `lodash` library so don't
538+
forget to install them from npm and import them:
539+
code-example(language="sh" class="code-shell").
540+
npm install lodash --save
541+
+makeExample('heroes-graphql/ts/src/app/in-memory-graphql.ts', 'import-lodash', 'in-memory-graphql.ts (imports)')
542+
543+
:marked
489544
To create the resolvers, copy the following code and add it to `in-memory-graphql.ts`.
490545
+makeExample('heroes-graphql/ts/src/app/in-memory-graphql.ts', 'resolvers', 'in-memory-graphql.ts')
491546

@@ -494,13 +549,6 @@ code-example(language="sh" class="code-shell").
494549
For the full explanation about how GraphQL resolvers work see
495550
[Execution](http://graphql.org/learn/execution/) on [GraphQL.org](http://graphql.org/).
496551

497-
:marked
498-
You may have noticed some functions from `lodash` such as `lodashFind()` so don't
499-
forget to install them from npm and import them:
500-
code-example(language="sh" class="code-shell").
501-
npm install lodash --save
502-
+makeExample('heroes-graphql/ts/src/app/in-memory-graphql.ts', 'import-lodash', 'in-memory-graphql.ts (imports)')
503-
504552
:marked
505553
Notice that the server includes functions that correspond to each
506554
type in the schema _and_ the mutations.

0 commit comments

Comments
 (0)