Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 248 Bytes

0bbd30b9be3e54ff3028b9f4459634d2.asciidoc

File metadata and controls

18 lines (18 loc) · 248 Bytes
response = client.indices.put_mapping(
  index: 'my_index',
  body: {
    properties: {
      name: {
        properties: {
          last: {
            type: 'text'
          }
        }
      }
    }
  }
)
puts response