1schema { 2 query: TopQuery 3 mutation: TopMutation 4 subscription: TopSubscription 5} 6 7type TopQuery { 8 noop: Boolean 9} 10 11type TopMutation { 12 noop: Boolean 13} 14 15type TopSubscription { 16 noop: Boolean 17}
View as plain text