You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docusaurus/docs/loading-graphql-files.md
+7-9
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,16 @@ title: Loading .graphql Files
4
4
sidebar_label: Loading .graphql Files
5
5
---
6
6
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:
8
8
9
9
```sh
10
-
npm install --save graphql.macro
10
+
npm install --save graphql graphql.macro
11
11
```
12
12
13
13
Alternatively you may use `yarn`:
14
14
15
15
```sh
16
-
yarn add graphql.macro
16
+
yarn add graphql graphql.macro
17
17
```
18
18
19
19
Then, whenever you want to load `.gql` or `.graphql` files, import the `loader` from the macro package:
0 commit comments