Skip to content

Custom functions not found in nested conditions #5

@Ingoleth

Description

@Ingoleth

The following code, derived from example4_custom_functions.py errors, since the parser can't find the custom function.

    def times(value):
        return lambda array: list(map(lambda item: item * value, array))

    query = "true and times([1, 2, 3])"
    options: JsonQueryOptions = {"functions": {"times": times}}
    print(jsonquery(data, query, options))
Image

Peeking at the code, it would seem that the custom arguments passed on the higher lever evaluation are not passed to recursive evaluations, and thus the function is not found.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions