Skip to content

Commit 4b8b38b

Browse files
nagmanamyrlam
authored andcommittedApr 30, 2019
Update GraphQL doc (#6898)
* Need to install graphql package * Need to provide real graphql in the .graphql file, not gql wrapped graphql
1 parent a2ae8a7 commit 4b8b38b

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed
 

‎docusaurus/docs/loading-graphql-files.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ title: Loading .graphql Files
44
sidebar_label: Loading .graphql Files
55
---
66

7-
To load `.gql` and `.graphql` files, first install the [`graphql.macro`](https://www.npmjs.com/package/graphql.macro) package by running:
7+
To load `.gql` and `.graphql` files, first install the [`graphql`](https://www.npmjs.com/package/graphql) and [`graphql.macro`](https://www.npmjs.com/package/graphql.macro) packages by running:
88

99
```sh
10-
npm install --save graphql.macro
10+
npm install --save graphql graphql.macro
1111
```
1212

1313
Alternatively you may use `yarn`:
1414

1515
```sh
16-
yarn add graphql.macro
16+
yarn add graphql graphql.macro
1717
```
1818

1919
Then, whenever you want to load `.gql` or `.graphql` files, import the `loader` from the macro package:
@@ -27,13 +27,11 @@ const query = loader('./foo.graphql');
2727
And your results get automatically inlined! This means that if the file above, `foo.graphql`, contains the following:
2828

2929
```graphql
30-
gql`
31-
query {
32-
hello {
33-
world
34-
}
30+
query {
31+
hello {
32+
world
3533
}
36-
`;
34+
}
3735
```
3836

3937
The previous example turns into:

0 commit comments

Comments
 (0)