From f13c2e8443854c8abc8986f89c867bf573ea4fa1 Mon Sep 17 00:00:00 2001 From: James Bellenger Date: Fri, 6 Mar 2026 15:24:42 -0800 Subject: [PATCH] Editorial: consistent field ordering in Circular References examples Reorder fields in the counter-example for self-referencing input types so that `self` appears before `value`, matching the field order used in all other examples in the Circular References section. --- spec/Section 3 -- Type System.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Section 3 -- Type System.md b/spec/Section 3 -- Type System.md index 44760852c..1be92a0ea 100644 --- a/spec/Section 3 -- Type System.md +++ b/spec/Section 3 -- Type System.md @@ -1622,8 +1622,8 @@ This example of a circularly-referenced input type is invalid as the field ```graphql counter-example input Example { - value: String self: Example! + value: String } ```