// query-dsl/query-string-query.asciidoc:486 [source, php] ---- $params = [ 'body' => [ 'query' => [ 'query_string' => [ 'fields' => [ 'title', 'content', ], 'query' => 'this OR that OR thus', 'minimum_should_match' => 2, ], ], ], ]; $response = $client->search($params); ----