Skip to content

Commit 6d2a3ff

Browse files
committed
some snippet filenaming
1 parent 0bde94d commit 6d2a3ff

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

examples/hasura-openbrewery-geodb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ In OpenBrewery's documentation, they have examples for both request and response
8989

9090
What we need to do is create a new Mesh configuration file on the project root `.meshrc.yml`;
9191

92-
```yaml filename=".meshrc.yml"
92+
```yaml filename=".meshrc.yaml"
9393
sources:
9494
- name: OpenBrewery
9595
handler:

examples/openwhisk-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
GraphQL Mesh needs to be aware of the path of the OpenWhisk action endpoint.
1313
So you need to configure `serve.endpoint` in `.meshrc.yml`;
1414

15-
```yaml filename=".meshrc.yml"
15+
```yaml filename=".meshrc.yaml"
1616
serve:
1717
# This is the full path to your endpoint
1818
# In the following endpoint, we assume you have created a package with `wsk package create mesh`

website/src/pages/docs/guides/mesh-sdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ query myQuery($someVar: String!) {
4949

5050
Now, update your `.meshrc.yml` to include this GraphQL document, as follows:
5151

52-
```yaml filename=".meshrc.yml"
52+
```yaml filename=".meshrc.yaml"
5353
sources: #
5454

5555
documents:

website/src/pages/docs/guides/subscriptions-webhooks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can also use the JSON Schema handler if you don't want to write an extra Gra
3434

3535
Just add the following to your existing JSON schema handler configuration in `.meshrc.yml` file;
3636

37-
```yaml filename=".meshrc.yml"
37+
```yaml filename=".meshrc.yaml"
3838
- type: Subscription
3939
field: todoAdded
4040
pubsubTopic: webhook:post:todo-added

website/src/pages/docs/handlers/json-schema.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ By declaring the `responseSample`, you can use the JSON sample in the GraphQL sc
9898

9999
`Mesh Sample Example - .meshrc.yml file`
100100

101-
```yaml filename=".meshrc.yml" {11}
101+
```yaml filename=".meshrc.yaml" {11}
102102
sources:
103103
- name: MyGraphQLApi
104104
handler:

website/src/pages/docs/plugins/deduplicate-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This plugin deduplicates the same HTTP requests done in parallel to reduce the n
88

99
<PackageCmd packages={['@graphql-mesh/plugin-deduplicate-request']} />
1010

11-
```yaml
11+
```yaml filename=".meshrc.yaml"
1212
plugins:
1313
- deduplicateRequest: {}
1414
```

website/src/pages/docs/plugins/http-cache.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This plugin brings [HTTP Caching](https://developer.mozilla.org/en-US/docs/Web/H
1717

1818
Then add the plugin to your configuration;
1919

20-
```yaml
20+
```yaml filename=".meshrc.yaml"
2121
plugins:
2222
httpCache: {}
2323
```

website/src/pages/docs/plugins/http-details-extensions.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ You can expose the details of outgoing HTTP requests done by GraphQL Mesh source
88

99
<PackageCmd packages={['@graphql-mesh/plugin-http-details-extensions']} />
1010

11-
```yaml
12-
# .meshrc.yml
11+
```yaml filename=".meshrc.yaml"
1312
plugins:
1413
- httpDetailsExtensions:
1514
if: "env.NODE_ENV === 'development'"

website/src/pages/docs/transforms/resolvers-composition.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `resolversComposition` transform allows adding middleware to your existing r
1010

1111
Add the following configuration to your Mesh config file:
1212

13-
```yaml filename=".meshrc.yml"
13+
```yaml filename=".meshrc.yaml"
1414
transforms:
1515
- resolversComposition:
1616
mode: bare | wrap

0 commit comments

Comments
 (0)