Hi there
I have a stack of data, each of the documents has a name and a description. A name could look like this: 'Runtimeerror [-191]'. But the number isn't allways the same (Range from -1 to -100'000). I know that I can query them with a wildcard like:
GET /_search
{
"query": {
"wildcard" : { "Title" : "Runtimeerror *" }
}
}
Is it possible to do a query like the one above but with timelion?
The data also contains a timestamp.
I have something in mind like this: .es(index=*, q='Title:Runtimeerror *')