Skip to content

Support for nested field names #9

@lifeofzero

Description

@lifeofzero

Really great project! One thing I was curious about is supported nested field names. For example:

foo.bar
foo.baz
foo.zap

Our schema in Elasticsearch supports one-level nesting, and I was having hard time getting the following to work.

df.filter(df.foo.bar == 'jane').select('last_name', 'email','age').collect()

Any help or suggestions would be appreciated. If was searching directly against the ES REST API the filter looks like:

"query": {
"filtered": {
"query": {
"query_string": {
"query": "+foo.bar:jane",
"analyze_wildcard": true,
"lowercase_expanded_terms": false
}
}

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions