def query_result():
    abs_path = os.path.abspath(os.path.dirname(__file__))
    example_path = "examples/transformer_example1.json"
    full_path = os.path.join(abs_path, example_path)
    return construct_execution_results(full_path)
def query_results_multiple_statistics_with_units():
    full_path = get_abs_path("examples/multiple_statistics_with_units.json")
    return construct_execution_results(full_path)
def query_result_with_autojoin_and_one_enum():
    full_path = get_abs_path("examples/auto_join_one_sided_enum.json")
    return construct_execution_results(full_path)
def query_duplicates_for_states_multi_stat():
    full_path = get_abs_path("examples/duplicates_for_states_multi_stat.json")
    return construct_execution_results(full_path)
def query_results_with_mult_enum():
    abs_path = os.path.abspath(os.path.dirname(__file__))
    example_path = "examples/multiple_enums.json"
    full_path = os.path.join(abs_path, example_path)
    return construct_execution_results(full_path)