// 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.search({ index: "index2", query: { query_string: { query: "running with scissors", fields: ["comment", "comment.english"], }, }, highlight: { order: "score", fields: { "comment.english": { type: "fvh", matched_fields: ["comment"], }, }, }, }); console.log(response); ----