Skip to content

Commit

Permalink
Finishing relative links.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhberro committed Sep 4, 2017
1 parent 03025bd commit cff40b3
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion 1. What is GraphQL.md
Expand Up @@ -51,4 +51,4 @@ We'll discuss them as we go through the series.

<strike>Previous</strike>

[Next](http://google.com) - Basic Query Syntax
[Next](2.%20Basic%20Query%20Syntax.md) - Basic Query Syntax
2 changes: 1 addition & 1 deletion 2. Basic Query Syntax.md
Expand Up @@ -102,4 +102,4 @@ However, if a query has no `arguments` or `directives` (we will discuss directiv

[Previous](1.%20What%20is%20GraphQL.md) - What is GraphQL

[Next](2.%20Basic%20Query%20Syntax.md) - Querying with Field Aliases and Fragments
[Next](3.%20Querying%20with%20Field%20Aliases%20and%20Fragments.md) - Querying with Field Aliases and Fragments
4 changes: 2 additions & 2 deletions 3. Querying with Field Aliases and Fragments.md
Expand Up @@ -164,6 +164,6 @@ query inlineFragmentTyping {

There are other ways to conditionally modify a query. `Directive` plays the key role in that and we are going to talk about them in the next part.

[Previous](http://google.com) - Basic Query Syntax
[Previous](2.%20Basic%20Query%20Syntax.md) - Basic Query Syntax

[Next](http://google.com) - Querying with Directives
[Next](4.%20Querying%20with%20Directives.md) - Querying with Directives
4 changes: 2 additions & 2 deletions 4. Querying with Directives.md
Expand Up @@ -94,6 +94,6 @@ This example is here just to show how to post a GraphQL query programmatically i

Now what about the GraphQL server that'll process the query? We haven't said anything about how to write a GraphQL server yet. Let's start that in the next part.

[Previous](http://google.com) - Querying with Field Aliases and Fragments
[Previous](3.%20Querying%20with%20Field%20Aliases%20and%20Fragments.md) - Querying with Field Aliases and Fragments

[Next](http://google.com) - On the Server-Side - Creating Your First Schema
[Next](5.%20On%20the%20Server-Side%20-%20Creating%20Your%20First%20Schema.md) - On the Server-Side - Creating Your First Schema
4 changes: 2 additions & 2 deletions 5. On the Server-Side - Creating Your First Schema.md
Expand Up @@ -98,6 +98,6 @@ graphql(schema, query).then((result) => {
If you are using server-side MVC frameworks like Ruby on Rails, Laravel or SailsJS, you are probably getting a hint here that the coming days are going to be a lot different with GraphQL. The `V` in MVC has already gone from the server-side in API only use cases. What's next? I can only speculate there will be rudimentary routing for our API servers, as we won't have a bunch of routes but a single endpoint. The schema will do a lot of validation for us, a lot of authentication & authorization will be on middleware layers, as they are now. The `resolve` function of the fields will probably take a lot of responsibility from controllers. The only least affected areas might be the models/ORM layer. Or maybe GraphQL will co-exists with REST and pre-dominant MVC style server-side architecture for a long time. I don't know. But I'm excited to embrace what's coming in the near future!

[Previous](http://google.com) - Querying with Directives
[Previous](4.%20Querying%20with%20Directives.md) - Querying with Directives

[Next](http://google.com) - A Working GraphQL Server in Nodejs
[Next](6.%20A%20Working%20GraphQL%20Server%20in%20Nodejs.md) - A Working GraphQL Server in Nodejs
4 changes: 2 additions & 2 deletions 6. A Working GraphQL Server in Nodejs.md
Expand Up @@ -108,6 +108,6 @@ curl -XPOST -d '{contributor (id: "1")}' http://localhost:8080/

If you got `{"data":{"contributor":"leebyron"}}` in return, congratulations for making it this far!

[Previous](http://google.com) - On the Server-Side - Creating Your First Schema
[Previous](5.%20A%20Working%20GraphQL%20Server%20in%20Nodejs.md) - On the Server-Side - Creating Your First Schema

[Next](http://google.com) - Deep Dive into GraphQL Type System
[Next](7.%20Deep%20Dive%20into%20GraphQL%20Type%20System.md) - Deep Dive into GraphQL Type System
4 changes: 2 additions & 2 deletions 7. Deep Dive into GraphQL Type System.md
Expand Up @@ -451,6 +451,6 @@ graphql(schema, query).then((result) => {

Now you can define more custom scalar types using `ValidateStringType` function. *Thanks [pyros2097](https://github.com/pyros2097) for the suggestion and `ValidateStringType` snippet!*

[Previous](http://google.com) - A Working GraphQL Server in Nodejs
[Previous](6.%20A%20Working%20GraphQL%20Server%20in%20Nodejs.md) - A Working GraphQL Server in Nodejs

[Next](http://google.com) - Mutations
[Next](8.%20Mutations.md) - Mutations
4 changes: 2 additions & 2 deletions 8. Mutations.md
Expand Up @@ -91,6 +91,6 @@ curl -XPOST -d 'mutation UpdateContributorUsername {updateContributor (id: "5",

One important difference between mutation and query operations is, if you post multiple mutations together, they are processed serially in order to ensure data integrity, whereas independent queries are processed concurrently by the GraphQL executor.

[Previous](http://google.com) - Deep Dive into GraphQL Type System
[Previous](7.%20Deep%20Dive%20into%20GraphQL%20Type%20System.md) - Deep Dive into GraphQL Type System

[Next](http://google.com) - Instrospection
[Next](9.%20Introspection.md) - Instrospection
2 changes: 1 addition & 1 deletion 9. Introspection.md
Expand Up @@ -4,6 +4,6 @@ It's often useful to ask a GraphQL schema for information about what queries it

TBD.

[Previous](http://google.com) - Mutations
[Previous](8.%20Mutations.md) - Mutations

<strike>Next</strike>

0 comments on commit cff40b3

Please sign in to comment.