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. ).subscribe({
  8.     next(value) {
  9.         console.log("MMMMM Continuous query Value MMMMM")
  10.         console.log(value);
  11.     }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement