How to query the details of a Hyperledger Fabric TransactionHow to show transaction input data in a Hyperledger Composer querySubmitting a transaction via RESTful API (how to handle transactionid and timestamp)How to show transaction input data in a Hyperledger Composer queryHyperledger Fabric. Unable to invoke transactions using Fabric Node SDKCannot Post Hyperledger Transaction on Rest APIHyperledger Composer REST Server returns 200 even when transaction failsHyperledger Fabric failed to update block with no error responseProblem of querying the Hyperledger HistorianCan member of Hyperledger Fabric network implement and use Hyperledger Explorer (to view old transactions) without approval of the other members?How to get history of particular transaction in Hyperledger historianHow to get all information about particular transaction type?

Using "tail" to follow a file without displaying the most recent lines

My ex-girlfriend uses my Apple ID to log in to her iPad. Do I have to give her my Apple ID password to reset it?

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Why was the shrink from 8″ made only to 5.25″ and not smaller (4″ or less)

In Bayesian inference, why are some terms dropped from the posterior predictive?

What historical events would have to change in order to make 19th century "steampunk" technology possible?

Why do I get negative height?

Was the Stack Exchange "Happy April Fools" page fitting with the '90's code?

Getting extremely large arrows with tikzcd

Description list Formatting using enumitem

Processor speed limited at 0.4 Ghz

What's the meaning of "Sollensaussagen"?

Should I tell management that I intend to leave due to bad software development practices?

How do conventional missiles fly?

Avoiding the "not like other girls" trope?

Does Dispel Magic work on Tiny Hut?

What is the fastest integer factorization to break RSA?

Expand and Contract

How to install cross-compiler on Ubuntu 18.04?

How to Prove P(a) → ∀x(P(x) ∨ ¬(x = a)) using Natural Deduction

Car headlights in a world without electricity

OP Amp not amplifying audio signal

Can a virus destroy the BIOS of a modern computer?

Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?



How to query the details of a Hyperledger Fabric Transaction


How to show transaction input data in a Hyperledger Composer querySubmitting a transaction via RESTful API (how to handle transactionid and timestamp)How to show transaction input data in a Hyperledger Composer queryHyperledger Fabric. Unable to invoke transactions using Fabric Node SDKCannot Post Hyperledger Transaction on Rest APIHyperledger Composer REST Server returns 200 even when transaction failsHyperledger Fabric failed to update block with no error responseProblem of querying the Hyperledger HistorianCan member of Hyperledger Fabric network implement and use Hyperledger Explorer (to view old transactions) without approval of the other members?How to get history of particular transaction in Hyperledger historianHow to get all information about particular transaction type?













0















If you deploy your network on the composer playground you can access the "all Transactions"



enter image description here



which I assume same as implementing



"SELECT org.hyperledger.composer.system.HistorianRecord"



However in the playground there is a button "View Record"



that provides the transaction details :




"$class": "org.ACME.OwnershipChange",
"PreviousOwner": "WHF_123",
"NewOwner": "HFS_456",
"debtID": "123123126",
"transactionId": "4e04116f-5788-48ac-9930-e0bf3beb74e3",
"timestamp": "2019-03-20T19:53:42.796Z"



When trying to implement a Historian Record query via Composer REST I get all the details of the Record but not the details of the transaction as in the mentioned above "View Record"




"$class": "org.hyperledger.composer.system.HistorianRecord",
"transactionId": "2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
"transactionType": "org.ACME.OwnershipChange",
"transactionInvoked": "resource:org.ACME.OwnershipChange#2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
"participantInvoking": "resource:org.hyperledger.composer.system.NetworkAdmin#admin",
"identityUsed": "resource:org.hyperledger.composer.system.Identity#d258882fc3c452601433a729958ba3c592bd31e95fc43fbf493f5be3dc566dd1",
"eventsEmitted": [],
"transactionTimestamp": "2019-03-21T20:05:49.504Z"
,


How do I query the view record details ?










share|improve this question


























    0















    If you deploy your network on the composer playground you can access the "all Transactions"



    enter image description here



    which I assume same as implementing



    "SELECT org.hyperledger.composer.system.HistorianRecord"



    However in the playground there is a button "View Record"



    that provides the transaction details :




    "$class": "org.ACME.OwnershipChange",
    "PreviousOwner": "WHF_123",
    "NewOwner": "HFS_456",
    "debtID": "123123126",
    "transactionId": "4e04116f-5788-48ac-9930-e0bf3beb74e3",
    "timestamp": "2019-03-20T19:53:42.796Z"



    When trying to implement a Historian Record query via Composer REST I get all the details of the Record but not the details of the transaction as in the mentioned above "View Record"




    "$class": "org.hyperledger.composer.system.HistorianRecord",
    "transactionId": "2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
    "transactionType": "org.ACME.OwnershipChange",
    "transactionInvoked": "resource:org.ACME.OwnershipChange#2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
    "participantInvoking": "resource:org.hyperledger.composer.system.NetworkAdmin#admin",
    "identityUsed": "resource:org.hyperledger.composer.system.Identity#d258882fc3c452601433a729958ba3c592bd31e95fc43fbf493f5be3dc566dd1",
    "eventsEmitted": [],
    "transactionTimestamp": "2019-03-21T20:05:49.504Z"
    ,


    How do I query the view record details ?










    share|improve this question
























      0












      0








      0








      If you deploy your network on the composer playground you can access the "all Transactions"



      enter image description here



      which I assume same as implementing



      "SELECT org.hyperledger.composer.system.HistorianRecord"



      However in the playground there is a button "View Record"



      that provides the transaction details :




      "$class": "org.ACME.OwnershipChange",
      "PreviousOwner": "WHF_123",
      "NewOwner": "HFS_456",
      "debtID": "123123126",
      "transactionId": "4e04116f-5788-48ac-9930-e0bf3beb74e3",
      "timestamp": "2019-03-20T19:53:42.796Z"



      When trying to implement a Historian Record query via Composer REST I get all the details of the Record but not the details of the transaction as in the mentioned above "View Record"




      "$class": "org.hyperledger.composer.system.HistorianRecord",
      "transactionId": "2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
      "transactionType": "org.ACME.OwnershipChange",
      "transactionInvoked": "resource:org.ACME.OwnershipChange#2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
      "participantInvoking": "resource:org.hyperledger.composer.system.NetworkAdmin#admin",
      "identityUsed": "resource:org.hyperledger.composer.system.Identity#d258882fc3c452601433a729958ba3c592bd31e95fc43fbf493f5be3dc566dd1",
      "eventsEmitted": [],
      "transactionTimestamp": "2019-03-21T20:05:49.504Z"
      ,


      How do I query the view record details ?










      share|improve this question














      If you deploy your network on the composer playground you can access the "all Transactions"



      enter image description here



      which I assume same as implementing



      "SELECT org.hyperledger.composer.system.HistorianRecord"



      However in the playground there is a button "View Record"



      that provides the transaction details :




      "$class": "org.ACME.OwnershipChange",
      "PreviousOwner": "WHF_123",
      "NewOwner": "HFS_456",
      "debtID": "123123126",
      "transactionId": "4e04116f-5788-48ac-9930-e0bf3beb74e3",
      "timestamp": "2019-03-20T19:53:42.796Z"



      When trying to implement a Historian Record query via Composer REST I get all the details of the Record but not the details of the transaction as in the mentioned above "View Record"




      "$class": "org.hyperledger.composer.system.HistorianRecord",
      "transactionId": "2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
      "transactionType": "org.ACME.OwnershipChange",
      "transactionInvoked": "resource:org.ACME.OwnershipChange#2c80fd8b89cef32fb9dff6864d76b9fecd2194cd447266161fc9d1fb1a32aed9",
      "participantInvoking": "resource:org.hyperledger.composer.system.NetworkAdmin#admin",
      "identityUsed": "resource:org.hyperledger.composer.system.Identity#d258882fc3c452601433a729958ba3c592bd31e95fc43fbf493f5be3dc566dd1",
      "eventsEmitted": [],
      "transactionTimestamp": "2019-03-21T20:05:49.504Z"
      ,


      How do I query the view record details ?







      hyperledger-fabric hyperledger hyperledger-composer hyperledger-explorer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 20:46









      user1729745user1729745

      11




      11






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Found the solution in this thread.



          Instead of Querying SELECT org.hyperledger.composer.system.HistorianRecord
          try querying SELECT org.ACME.OwnershipChange



          How to show transaction input data in a Hyperledger Composer query






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288990%2fhow-to-query-the-details-of-a-hyperledger-fabric-transaction%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Found the solution in this thread.



            Instead of Querying SELECT org.hyperledger.composer.system.HistorianRecord
            try querying SELECT org.ACME.OwnershipChange



            How to show transaction input data in a Hyperledger Composer query






            share|improve this answer



























              0














              Found the solution in this thread.



              Instead of Querying SELECT org.hyperledger.composer.system.HistorianRecord
              try querying SELECT org.ACME.OwnershipChange



              How to show transaction input data in a Hyperledger Composer query






              share|improve this answer

























                0












                0








                0







                Found the solution in this thread.



                Instead of Querying SELECT org.hyperledger.composer.system.HistorianRecord
                try querying SELECT org.ACME.OwnershipChange



                How to show transaction input data in a Hyperledger Composer query






                share|improve this answer













                Found the solution in this thread.



                Instead of Querying SELECT org.hyperledger.composer.system.HistorianRecord
                try querying SELECT org.ACME.OwnershipChange



                How to show transaction input data in a Hyperledger Composer query







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 21 at 21:04









                user1729745user1729745

                11




                11





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288990%2fhow-to-query-the-details-of-a-hyperledger-fabric-transaction%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript