Skip to content

Commit 0948b6b

Browse files
authored
frontMatter sidebar_label is unused and smaller sidebar titles adjustments (#1764)
1 parent 68e1089 commit 0948b6b

28 files changed

+4
-28
lines changed

website/src/pages/v3/_meta.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"index": "Quick Start",
33
"features": "Features",
44
"integrations": "Integrations",
5-
"migration": "Migration"
5+
"migration": "Migration",
6+
"comparison": "Comparison"
67
}

website/src/pages/v3/comparison.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: comparison
33
title: Comparison with other JavaScript GraphQL server libraries
4-
sidebar_label: Comparison
54
---
65

76
## GraphQL Yoga and Apollo Server

website/src/pages/v3/features/automatic-persisted-queries.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: automatic-persisted-queries
33
title: Automatic Persisted Queries
4-
sidebar_label: Automatic Persisted Queries
54
---
65

76
import { PackageCmd } from '@theguild/components'

website/src/pages/v3/features/cors.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: cors
33
title: Configuring CORS with Yoga
4-
sidebar_label: CORS
54
---
65

76
CORS stands for Cross Origin Resource Sharing. In a nutshell, as a security measure, browsers aren't allowed to access resources outside their own domain.

website/src/pages/v3/features/envelop-plugins.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: envelop-plugins
33
title: Use Envelop Plugins within GraphQL Yoga
4-
sidebar_label: Envelop Plugins
54
---
65

76
[Envelop is a lightweight JavaScript (TypeScript) library for customizing the GraphQL execution layer, allowing developers to build, share and compose plugins that enhance the capabilities of your GraphQL server](https://envelop.dev).

website/src/pages/v3/features/error-masking.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: error-masking
33
title: Error Masking
4-
sidebar_label: Error Masking
54
---
65

76
Yoga uses [the Envelop `useMaskedErrors`](https://www.envelop.dev/plugins/use-masked-errors) for automatically masking unexpected errors and preventing sensitive information leaking to clients.

website/src/pages/v3/features/file-uploads.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: file-uploads
33
title: Enable File Uploads in GraphQL Yoga
4-
sidebar_label: File Uploads
54
---
65

76
GraphQL Yoga supports [GraphQL Multipart Request Specification](https://github.com/jaydenseric/graphql-multipart-request-spec) which basically allows you to upload files via HTTP and consume the binary data inside GraphQL Resolvers.

website/src/pages/v3/features/graphiql.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: graphiql
33
title: GraphiQL
4-
sidebar_label: GraphiQL
54
---
65

76
import { PackageCmd } from '@theguild/components'

website/src/pages/v3/features/persisted-operations.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: persisted-operations
33
title: Persisted Operations
4-
sidebar_label: Persisted Operations
54
---
65

76
import { PackageCmd } from '@theguild/components'

website/src/pages/v3/features/response-caching.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
id: response-caching
33
title: Response Caching
4-
sidebar_label: Resposne Caching
54
---
65

76
import { PackageCmd } from '@theguild/components'

0 commit comments

Comments
 (0)