From a48578c7ca3041f6d1f9d9fd3d9ad7d9bd5459db Mon Sep 17 00:00:00 2001 From: Sebastian Tiedtke Date: Sat, 30 Dec 2023 09:03:33 -0500 Subject: [PATCH] Make the point more clear --- src/content/learn/Learn-Schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/Learn-Schema.md b/src/content/learn/Learn-Schema.md index f6dd3ec39e..c9b5ce5623 100644 --- a/src/content/learn/Learn-Schema.md +++ b/src/content/learn/Learn-Schema.md @@ -297,7 +297,7 @@ Learn more about this in the [inline fragments](/learn/queries/#inline-fragments ### Union types -Union types are very similar to interfaces, but they don't get too specify about any common fields between the types. +Union types share similarities with interfaces; however, they lack the ability to define any shared fields among the constituent types. ```graphql union SearchResult = Human | Droid | Starship