From c012c6e03663fc0e4208aafd568117fa7b535b7c Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Fri, 16 Aug 2024 14:41:56 +0200 Subject: [PATCH] Fix more link --- docs/general/subscriptions.md | 4 ++-- docs/types/generics.md | 1 + docs/types/object-types.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/general/subscriptions.md b/docs/general/subscriptions.md index 8f857cb117..7d4161bdc4 100644 --- a/docs/general/subscriptions.md +++ b/docs/general/subscriptions.md @@ -332,8 +332,8 @@ application = GraphQLProtocolTypeRouter( ) ``` -Note: Check the [channels integraton](/docs/integrations/channels.md) page for -more information regarding it. +Note: Check the [channels integraton](../integrations/channels.md) page for more +information regarding it. #### FastAPI diff --git a/docs/types/generics.md b/docs/types/generics.md index 36fc44e5ee..9e4e424793 100644 --- a/docs/types/generics.md +++ b/docs/types/generics.md @@ -181,6 +181,7 @@ type Mutation { > `PostInput` are Input types. Providing `posts: CollectionInput[Post]` to > `add_posts` (i.e. using the non-input `Post` type) would have resulted in an > error: +> > ``` > PostCollectionInput fields cannot be resolved. Input field type must be a > GraphQL input type diff --git a/docs/types/object-types.md b/docs/types/object-types.md index 7455810030..8471bd9a4c 100644 --- a/docs/types/object-types.md +++ b/docs/types/object-types.md @@ -28,7 +28,7 @@ schema (also referred as root types). - `Subscription` is the entry point for all the subscriptions. For a walk-through on how to define schemas, read the -[schema basics](/docs/general/schema-basics.md). +[schema basics](../general/schema-basics.md). ## Defining object types