// This file is autogenerated, DO NOT EDIT // Use `node scripts/generate-docs-examples.js` to generate the docs examples [source, js] ---- const response = await client.index({ index: "example", document: { location: { type: "GeometryCollection", geometries: [ { type: "Point", coordinates: [100, 0], }, { type: "LineString", coordinates: [ [101, 0], [102, 1], ], }, ], }, }, }); console.log(response); ----