Querying Requests

Request:

query {
  allRequests {
    nodes {
      id
      accountId
      data
      type
      createdOn
      stagedTransfersByRequestId {
        nodes {
          id
          accountId
          securityId
          type
          status
          webhookId
          data
          createdOn
          executedOn
        }
      }
    }
  }
}

In this example, the query returns ALL requests submitted by the custodian using the bulkDeposit mutation documented in this chapter. Standard GraphQL conditions/filters may be applied to this type of query in order limit the size of the result set. See the Appendix for more details.

What's on this Page