From 2a488a175c4790766651f95758f77622cfe90aef Mon Sep 17 00:00:00 2001 From: Trevor Blades Date: Thu, 26 Mar 2020 23:43:45 -0700 Subject: [PATCH] Reorder readme sections --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0982e99..fa27ab6 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,16 @@ A public GraphQL API for information about countries, continents, and languages. 2. The `country.continent` and `country.languages` are now objects and arrays of objects, respectively. 3. Each `Country` has an array of `states` populated by their states/provinces, if any. +- [Docs](#docs) - [Writing queries](#writing-queries) - [Migration notes (pre-March 2020)](#migration-notes-pre-march-2020) -- [Docs](#docs) - [Examples](#examples) - [License](#license) +## Docs + +Check out [the playground](https://countries.trevorblades.com) to explore the schema and test out some queries. + ## Writing queries ```graphql @@ -76,10 +80,6 @@ In the first version of this API, `code` arguments were treated as `String`s. No } ``` -## Docs - -Check out [the playground](https://countries.trevorblades.com) to explore the schema and test out some queries. - ## Examples - [React](./examples/react)