Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 485 Bytes

File metadata and controls

26 lines (25 loc) · 485 Bytes

Get all Public Credentials and its corresponding Updates:

   query PublicCredentialsAndUpdates {
      publicCredentials {
        totalCount
        nodes {
          id
          subjectId
          claims
          cTypeId
          issuerId
          payer
          valid
          updates(orderBy: ID_ASC) {
            totalCount
            nodes {
              id
              nature
              updateBlockId
            }
          }
        }
      }
    }