Skip to content

Commit e7657fd

Browse files
Signed the CLA and merge conflicts resolved
2 parents b75ef10 + ca21453 commit e7657fd

File tree

7 files changed

+31
-3
lines changed

7 files changed

+31
-3
lines changed

site/community/Community-Events.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,17 @@ Uri Goldshtein works at Meteor Development group at the Apollo team and is the c
4646

4747
As our applications grow larger and our models and views become more and more complex, data fetching can become a real problem. This talk explores REST APIs pain points and how GraphQL can solve data fetching problems easily, using a declarative and hierarchical query language.
4848

49+
### Introduction to GraphQL
50+
51+
- **Event:** AngularBeers Meetup
52+
- **Date:** October 20, 2016
53+
- **Location:** Barcelona, Spain
54+
- **Speaker:** Kamil Kisiela
55+
- **Link:** http://www.meetup.com/AngularJS-Beers/events/234353768/
56+
57+
Kamil is a front-end engineer from Warszawa and a member of the angular-meteor team. He helped build Angular 2 integration for ApolloStack. He is passionate about learning new stuff and developing new things. He loves a journey called Life. Based in Warsaw, Poland.
58+
Use this opportunity to ask him questions about this topic and a good excuse to visit Barcelona☀️!
59+
4960
### Building better mobile apps with GraphQL
5061

5162
- **Event:** Reactive Conf
@@ -72,6 +83,13 @@ As our applications grow larger and our models and views become more and more co
7283
- **Speakers:** Samer Buna, Armand Aquino, Kyle Matthews
7384
- **Link:** http://www.meetup.com/Declarative-Programmers/events/233430457/
7485

86+
### [Workshop] Working with GraphQL on Angular application
87+
88+
- **Date:** October 22, 2016
89+
- **Location:** Barcelona, Catalonia, Spain
90+
- **Speakers:** Kamil Kisiela
91+
- **Link:** http://www.meetup.com/AngularJS-Beers/events/234354326/
92+
7593
### GraphQL Summit
7694

7795
- **Date:** October 26, 2016

site/graphql-js/APIReference-ExpressGraphQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The `express-graphql` module provides a simple way to create an [Express](https:
1111

1212
```js
1313
import graphqlHTTP from 'express-graphql'; // ES6
14-
var graphqlHTTP = require('graphql'); // CommonJS
14+
var graphqlHTTP = require('express-graphql'); // CommonJS
1515
```
1616

1717
### graphqlHTTP

site/learn/Learn-Introspection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ __Directive** - These all are preceded with a double underscore, indicating
5050
that they are part of the introspection system.
5151

5252
Now, let's try and figure out a good place to start exploring what queries are
53-
available. When we designed out type system, we specified what type all queries
53+
available. When we designed our type system, we specified what type all queries
5454
would start at; let's ask the introspection system about that!
5555

5656
```graphql

site/learn/Learn-Queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ query HeroForEpisode($ep: Episode!) {
254254

255255
In this query, the `hero` field returns the type `Character`, which might be either a `Human` or a `Droid` depending on the `episode` argument. In the direct selection, you can only ask for fields that exist on the `Character` interface, such as `name`.
256256

257-
To ask for a field on the concrete type, you need to use an _inline fragment_ with a type condition. Because the first fragment is labeled as `... on Droid`, the `primaryFunction` field will only be executed if the `Character` returned from `hero` is of the `Droid` type. Similarly for the `homePlanet` field for the `Human` type.
257+
To ask for a field on the concrete type, you need to use an _inline fragment_ with a type condition. Because the first fragment is labeled as `... on Droid`, the `primaryFunction` field will only be executed if the `Character` returned from `hero` is of the `Droid` type. Similarly for the `height` field for the `Human` type.
258258

259259
Named fragments can also be used in the same way, since a named fragment always has a type attached.
260260

site/users/index.html.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,16 @@ var logos = [
226226
img: 'ustglobal.png',
227227
link: 'http://www.ust-global.com/'
228228
},
229+
{
230+
name: 'Sale Stock',
231+
img: 'salestock.png',
232+
link: 'https://www.salestockindonesia.com'
233+
},
234+
{
235+
name: 'IndonesiaX',
236+
img: 'indonesiax.png',
237+
link: 'https://www.indonesiax.co.id'
238+
},
229239
// Adding your logo?
230240
// Add it to the /users/logos/ directory and then append an entry above this comment.
231241
//

site/users/logos/indonesiax.png

41.7 KB
Loading

site/users/logos/salestock.png

58.9 KB
Loading

0 commit comments

Comments
 (0)