-
-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
This works:
jsonpath.findall('$.orders', json_object)
jsonpath.findall('$.test', json_object)
jsonpath.findall('test', json_object)
This does not work:
jsonpath.findall('orders', json_object)
-> JSONPathSyntaxError: unexpected token 'or', line 1, column 0
jsonpath.findall('andy', json_object)
-> JSONPathSyntaxError: unexpected token 'and', line 1, column 0
According to the documentation the '$.' part is optional.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working