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