1extend type Mutation { 2 updateSomething(input: SpecialInput!): String! 3} 4 5scalar Email 6 7input SpecialInput { 8 nesting: NestedInput! 9} 10 11input NestedInput { 12 field: Email! 13}
View as plain text