From 1872e018d1de12793e794fb45d9bbcea569706fe Mon Sep 17 00:00:00 2001 From: NeonXP Date: Wed, 4 Jan 2023 23:51:40 +0300 Subject: Added fill to factory --- query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'query.go') diff --git a/query.go b/query.go index 69b778c..18fcfce 100644 --- a/query.go +++ b/query.go @@ -13,7 +13,7 @@ func Query(parent Node, path []string) (Node, error) { head, rest := path[0], path[1:] switch parent := parent.(type) { case ObjectNode: - next, ok := parent.GetByKey(head) + next, ok := parent.Get(head) if !ok { return nil, fmt.Errorf("key %s not found at object %v", head, parent) } -- cgit v1.2.3