You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it is possible to search authors.firstName:"Tom" AND authors.lastName:"Smith" but that would erroneous match the above document because the matching it is at the root document level.
Using Lucene's blockjoin, it is possible to index child document alongside the parent document and allow separate queries against the child documents.
Zulia should support defining authors as a nested type and then allow searching on firstName and lastName correctly within that nested type.
The text was updated successfully, but these errors were encountered:
mdavis95
changed the title
Add nested field type
Allow better query handling of nested fields
Apr 13, 2023
Consider the sample document:
Currently it is possible to search authors.firstName:"Tom" AND authors.lastName:"Smith" but that would erroneous match the above document because the matching it is at the root document level.
Using Lucene's blockjoin, it is possible to index child document alongside the parent document and allow separate queries against the child documents.
Zulia should support defining authors as a nested type and then allow searching on firstName and lastName correctly within that nested type.
The text was updated successfully, but these errors were encountered: