Skip to content

Commit 79ebc54

Browse files
committed
Minor docs improvements
1 parent 7cc863d commit 79ebc54

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Library features include:
3434
- Parsing, validating and [executing GraphQL queries](executing-queries.md) against this Type System
3535
- Rich [error reporting](error-handling.md), including query validation and execution errors
3636
- Optional tools for [parsing GraphQL Type language](type-system/type-language.md)
37-
- Tools for [batching requests](data-fetching.md/#solving-n1-problem) to backend storage
38-
- [Async PHP platforms support](data-fetching.md/#async-php) via promises
39-
- [Standard HTTP server](executing-queries.md/#using-server)
37+
- Tools for [batching requests](data-fetching.md#solving-n1-problem) to backend storage
38+
- [Async PHP platforms support](data-fetching.md#async-php) via promises
39+
- [Standard HTTP server](executing-queries.md#using-server)
4040

4141
Also, several [complementary tools](complementary-tools.md) are available which provide integrations with
4242
existing PHP frameworks, add support for Relay, etc.

docs/type-system/type-language.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Defining your schema
2+
Since 0.9.0
23

34
[Type language](http://graphql.org/learn/schema/#type-language) is a convenient way to define your schema,
45
especially with IDE autocompletion and syntax validation.
@@ -39,6 +40,8 @@ Also, we have to rely on [default field resolver](../data-fetching.md#default-fi
3940
order to execute a query against this schema.
4041

4142
# Defining resolvers
43+
Since 0.10.0
44+
4245
In order to enable **Interfaces**, **Unions** and custom field resolvers you can pass the second argument:
4346
**type config decorator** to schema builder.
4447

@@ -61,6 +64,8 @@ $schema = BuildSchema::build($contents, $typeConfigDecorator);
6164
```
6265

6366
# Performance considerations
67+
Since 0.10.0
68+
6469
Method **build()** produces a [lazy schema](schema.md#lazy-loading-of-types)
6570
automatically, so it works efficiently even with very large schemas.
6671

0 commit comments

Comments
 (0)