From 2f8c548ee34302fe7ca9b3ab8845fedd1450d2ec Mon Sep 17 00:00:00 2001 From: geisterfurz007 Date: Thu, 19 Jan 2023 15:29:27 +0100 Subject: [PATCH] fix(typo): schema-configuration.md --- .../v13/distributed-schema/schema-configuration.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/src/docs/hotchocolate/v13/distributed-schema/schema-configuration.md b/website/src/docs/hotchocolate/v13/distributed-schema/schema-configuration.md index 331ed9f3dae..2d0a4ec57fd 100644 --- a/website/src/docs/hotchocolate/v13/distributed-schema/schema-configuration.md +++ b/website/src/docs/hotchocolate/v13/distributed-schema/schema-configuration.md @@ -67,7 +67,7 @@ In schema stitching type renames can be defined on the gateway: services .AddGraphQLServer() .AddRemoteSchema(Products) - .AddRemoteSchema(Inventiory) + .AddRemoteSchema(Inventory) .RenameType("Category","ProductCategory", Products); ``` @@ -136,7 +136,7 @@ In schema stitching field renames can be defined on the gateway: services .AddGraphQLServer() .AddRemoteSchema(Products) - .AddRemoteSchema(Inventiory) + .AddRemoteSchema(Inventory) .RenameField("Query", "categories", "productCategories", schemaName: Products) ``` @@ -182,7 +182,7 @@ If you want to remove a specific type from the schema you can also use `IgnoreTy services .AddGraphQLServer() .AddRemoteSchema(Products) - .AddRemoteSchema(Inventiory) + .AddRemoteSchema(Inventory) .IgnoreType("Category", schemaName: Products); ``` @@ -215,7 +215,7 @@ This can be useful when you want to merge root fields of domain services, but ig services .AddGraphQLServer() .AddRemoteSchema(Products) - .AddRemoteSchema(Inventiory) + .AddRemoteSchema(Inventory) .IgnoreField("Query", "categories", Products) .IgnoreField("Query", "categories", Inventory); ```