Skip to content

Commit c668940

Browse files
committed
Updated the ordering and descriptions of pages
1 parent 60d139f commit c668940

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+105
-94
lines changed

content/documentation/master/batching.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Batching"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 101
7-
description: Batching
6+
weight: 105
7+
description: How to avoid the dreaded N+1 calls for data and make your graphql system more efficient
88
---
99
# Using Dataloader
1010

content/documentation/master/concerns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Concerns"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 102
7-
description: Application concerns
6+
weight: 111
7+
description: Outlines certain application level concerns and how to address them
88
---
99
# Application concerns
1010

content/documentation/master/contributions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Contributions"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 103
7-
description: Contributions
6+
weight: 1000
7+
description: Every contribution to make this project better is welcome. Thank you!
88
---
99
# Contributions
1010

content/documentation/master/data-fetching.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Data fetching"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 105
7-
description: Data fetching
6+
weight: 102
7+
description: How graphql-java fetches data for each of the fields in a query
88
---
99
# Fetching data
1010

content/documentation/master/data-mapping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Data mapping"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 106
7-
description: Data mapping
6+
weight: 103
7+
description: How graphql-java maps object data to graphql types
88
---
99
# Mapping data
1010

content/documentation/master/defer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Defer"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 107
7-
description: Defer
6+
weight: 108
7+
description: Often when executing a query you have two classes of data. The data you need immediately and the data that could arrive little bit later.
88
---
99
# Deferred Execution
1010

content/documentation/master/exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
66
weight: 109
7-
description: Exceptions
7+
description: Outlines the exceptions used in graphql-java
88
---
99
# Runtime Exceptions
1010

content/documentation/master/execution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Execution"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 111
7-
description: Execution
6+
weight: 102
7+
description: How to execute a query using the graphql-java engine
88
---
99
# Execution
1010

content/documentation/master/fieldselection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Field selection"
33
date: 2018-09-09T12:52:46+10:00
44
draft: false
55
tags: [documentation]
6-
weight: 112
7-
description: Field selection
6+
weight: 109
7+
description: How you can efficiently look ahead at the selected fields lower in the query
88
---
99
# Field Selection
1010

content/documentation/master/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Dependency:
3939
<dependency>
4040
<groupId>com.graphql-java</groupId>
4141
<artifactId>graphql-java</artifactId>
42-
<version>9.0</version>
42+
<version>10.0</version>
4343
</dependency>
4444
{{< / highlight >}}
4545

0 commit comments

Comments
 (0)