github.com/operandinc/gqlgen@v0.16.1/codegen/testserver/followschema/maps.graphql (about) 1 extend type Query { 2 mapStringInterface(in: MapStringInterfaceInput): MapStringInterfaceType 3 mapNestedStringInterface(in: NestedMapInput): MapStringInterfaceType 4 } 5 6 type MapStringInterfaceType @goModel(model: "map[string]interface{}") { 7 a: String 8 b: Int 9 } 10 11 input MapStringInterfaceInput @goModel(model: "map[string]interface{}") { 12 a: String 13 b: Int 14 } 15 16 input NestedMapInput { 17 map: MapStringInterfaceInput 18 }