github.com/maeglindeveloper/gqlgen@v0.13.1-0.20210413081235-57808b12a0a0/codegen/testserver/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  }