We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Can I, at document creation, define that some specific document field, with name "ts" is of type date, with specific format?
Like with PUT call and body content
{ "properties": { "ts": {"type": "date", "format": "epoch_millis"} } }
Can this be done with Tirexs?
Really appreciate your help.
The text was updated successfully, but these errors were encountered:
try do just http call. Where is problem?)
Sorry, something went wrong.
You can do it with the HTTP call (see Tirexs.HTTP.post). I'm passing a keyword list structure like
[index: "data-obj", type: "data-obj", mapping: [properties: [job: [type: "keyword"], name: [type: "text", analyzer: "nGram_analyzer"], released: [type: "date", format: "dd/MM/yyyy"]]]]
here released is my date format with its own specific format.
released
Hope it helps.
No branches or pull requests
Can I, at document creation, define that some specific document field, with name "ts" is of type date, with specific format?
Like with PUT call and body content
{
"properties": {
"ts": {"type": "date", "format": "epoch_millis"}
}
}
Can this be done with Tirexs?
Really appreciate your help.
The text was updated successfully, but these errors were encountered: