Wallet
Represents a wallet entity, uniquely identified by a decentralized identifier (DID).
type Wallet {
firstUsed: DateTime!
id: ID!
lastUsed: DateTime!
presentations(
limit: PositiveInt = 100
offset: PositiveInt
where: WalletPresentationWhere
): [Presentation!]!
subject: String!
}
Fields
Wallet.firstUsed ● DateTime! non-null scalar
The first time this wallet was used in a presentation.
Wallet.id ● ID! non-null scalar
The local id for this wallet.
Wallet.lastUsed ● DateTime! non-null scalar
The last time this wallet was used in a presentation.
Wallet.presentations ● [Presentation!]! non-null object
Returns the successful credential presentations for this wallet.
Wallet.presentations.limit ● PositiveInt scalar
Wallet.presentations.offset ● PositiveInt scalar
Wallet.presentations.where ● WalletPresentationWhere input
Wallet.subject ● String! non-null scalar
The DID associated with this wallet
Returned By
findWallets query ● wallet query
Member Of
Presentation object