Multi-Nested Filter Query testing

what does "Multi level nesting is automatically supported, and detected, resulting in an inner nested query to automatically match the relevant nesting level (and not root) if it exists within another nested query." mean? Is there an example?

i have a multi-nested document, mydocument.nest1.nest2, when i set path: "mydocument" i can't just say: term: mydocument.nest1.nest2. it requires the path to be mydocument.nest1 to work.

Also, is it possible to execute a single filter on multi-nested fields?

 "filter": {
                                         "bool": {
                                             "must": [
                                                 { "nested": {
                                                     "path": "attributes",
                                                     "filter": {
                                                          "bool": {
                                                             "must": [{
                                                                 "terms": { 
                                                                     "attributes.attributesForType.attributeID": ["test"]
                                                                 },
                                                                 "term": {
                                                                     "attributes.attributeType": "test"
                                                                 }
                                                             }]
                                                          }
                                                     }
                                                 }
                                             }]
                                         }
                                     }