NestedPath is used if sorting occurs on a field that is inside a nested object.
(nestedPath string)
| 552 | // NestedPath is used if sorting occurs on a field that is inside a |
| 553 | // nested object. |
| 554 | func (s *ScriptSort) NestedPath(nestedPath string) *ScriptSort { |
| 555 | s.nestedPath = &nestedPath |
| 556 | return s |
| 557 | } |
| 558 | |
| 559 | // NestedSort is available starting with 6.1 and will replace NestedFilter |
| 560 | // and NestedPath. |
nothing calls this directly
no outgoing calls
no test coverage detected