From ad128850657d778a3be9a7412347f6045e621f06 Mon Sep 17 00:00:00 2001 From: Ivan Savytskyi Date: Tue, 12 Sep 2017 09:54:40 -0400 Subject: [PATCH] Fix wordind --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7dca32396d1..d701ff80a7f 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ apollo { ### Explicit Schema location By default Apollo-Android tries to lookup GraphQL schema file in `/graphql` folder, the same folder where all your GraphQL queries are stored. -For example if query files are located at `/src/main/graphql/com/example/api` then the schema file should be placed to the same location `/src/main/graphql/com/example/api`. Relative path of schema file to `/src/main/graphql` root folder defines the package name for generated models, in our example the package name of generated models will be `com.example.api`. +For example, if query files are located at `/src/main/graphql/com/example/api` then the schema file should be placed in the same location `/src/main/graphql/com/example/api`. Relative path of schema file to `/src/main/graphql` root folder defines the package name for generated models, in our example the package name of generated models will be `com.example.api`. Alternatively, you can explicitly provide GraphQL schema file location and package name for generated models: