field . '_' . $this->query; } /** * @return array>> */ public function toArray(): array { $body = [ 'value' => $this->query, 'boost' => $this->boost, ]; if ($this->caseInsensitive !== null) { $body['case_insensitive'] = $this->caseInsensitive; } return [ 'term' => [ $this->field => $body, ], ]; } }