From 901e02130a36c92c730d89ee289a15fe5d05e43a Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Mon, 8 Dec 2014 14:23:55 +0100 Subject: [PATCH] Manifold API: on_new_record receive the result values of Update Queries in the plugins --- manifoldapi/static/js/manifold.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifoldapi/static/js/manifold.js b/manifoldapi/static/js/manifold.js index 95e5b0e8..fe493cdc 100644 --- a/manifoldapi/static/js/manifold.js +++ b/manifoldapi/static/js/manifold.js @@ -1451,6 +1451,8 @@ case TYPE_LIST_OF_VALUES: var query_ext = manifold.query_store.find_query_ext(query.query_uuid); query_ext.query_state = QUERY_STATE_DONE; + var tmp_query = manifold.query_store.find_analyzed_query(query.query_uuid); + manifold.publish_result_rec(tmp_query, records); // Send DONE message to plugins query.iter_subqueries(function(sq, data, parent_query) { -- 2.43.0