github.com/fortexxx/gqlgen@v0.10.3-0.20191216030626-ca5ea8b21ead/example/type-system-extension/schemas/schema-extension.graphql (about) 1 extend schema { 2 mutation: MyMutation 3 } 4 5 extend type MyQuery { 6 todo(id: ID!): Todo 7 } 8 9 type MyMutation { 10 createTodo(todo: TodoInput!): Todo! 11 } 12 13 input TodoInput { 14 text: String! 15 }