Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(walletAddressKeys): list wallet address keys #2643

Merged
merged 9 commits into from
Apr 23, 2024
22 changes: 22 additions & 0 deletions bruno/collections/Rafiki/Rafiki Admin APIs/Get Wallet Address.bru
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,28 @@ body:graphql {
startCursor
}
}
walletAddressKeys {
edges {
node {
id
jwk {
kid
x
alg
kty
crv
}
revoked
createdAt
}
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
status
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
meta {
name: Get Wallet Addresses Keys
type: graphql
seq: 41
}

post {
url: {{RafikiGraphqlHost}}/graphql
body: graphql
auth: none
}

body:graphql {
query GetWalletAddressesKeys {
walletAddresses {
edges {
cursor
node {
id
publicName
url
walletAddressKeys {
edges {
cursor
node {
id
revoked
createdAt
jwk {
kid
x
alg
kty
crv
}
}
}
}
}
}
}
}
}
41 changes: 41 additions & 0 deletions localenv/mock-account-servicing-entity/generated/graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

167 changes: 167 additions & 0 deletions packages/backend/src/graphql/generated/graphql.schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading