All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rest-api-spec.test.update.22_doc_as_upsert.yml Maven / Gradle / Ivy

There is a newer version: 2.18.0
Show newest version
---
"Doc as upsert":
  - do:
      update:
          index:            test_1
          id:               1
          body:
            doc:            { foo: bar, count: 1 }
            doc_as_upsert:  true

  - do:
      get:
          index:  test_1
          id:     1

  - match:  { _source.foo:   bar }
  - match:  { _source.count: 1   }


  - do:
      update:
          index:            test_1
          id:               1
          body:
            doc:            { count: 2 }
            doc_as_upsert:  true

  - do:
      get:
          index:  test_1
          id:     1

  - match:  { _source.foo:   bar }
  - match:  { _source.count: 2   }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy