-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to add "keyword" and "text" field types in the mapping? #147
Comments
You should take a look at Grammer |
@killtw I just went lower level with Elasticsearch\Client itself and problem solved. |
@andrey-bahrachev How did you resolve this issue? Could you provide an example? |
@thitami Do something like this:
|
Thanks alot , @andrey-bahrachev. Appreciated! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey there,
I managed to make this package work with ES6, but as long as the "string" data type has been dropped there, I'm trying to add the "keyword" and "text" fields in the mapping like this:
$map->addField('keyword', 'type');
$map->addField('text', 'description');
But for some reason those fields are being ignored and they do not appear in the mapping at all. Any ideas why?
The text was updated successfully, but these errors were encountered: