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
GraphQL Mesh also features more transforms which you can read about [here.](https://the-guild.dev/graphql/mesh/docs/transforms/transforms-introduction)
11
+
12
+
The example here is using the following tools/concepts:
To run this example, make sure to install the dependencies in the root of the monorepo, and then run this example:
21
+
22
+
```
23
+
# In the root directory
24
+
$ yarn install
25
+
$ yarn build
26
+
$ cd examples/transforms/
27
+
$ yarn start
28
+
```
29
+
30
+
### Building
31
+
32
+
You can also build the client sdk by running: `yarn build`.
33
+
34
+
### GraphQL Mesh Transforms Usage
35
+
36
+
To run any transforms on your project from graphql mesh you will need to install the transforms respective dependency. For eg. in this project the prefix transform is used which requires the `@graphql-mesh/transform-prefix` dependency.
0 commit comments