Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const pushQuery = await reactiveProxyjs.pushQuery(hyperledgerProxy,
  2.             {
  3.                 select: "*",
  4.                 from: ["newGrade"],
  5.                 where: ["maxromai"]
  6.             }
  7.         );
  8.         pushQuery.subscribe({
  9.             next(value) {
  10.                 console.log("MMMMM Continuous query Value MMMMM")
  11.                 console.log(value);
  12.             }
  13.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement