Skip to content

Commit

Permalink
feat(everything): move endpoints to separate service, update bruno an…
Browse files Browse the repository at this point in the history
…d schema do pagination and stuff
  • Loading branch information
golobitch committed Aug 29, 2024
1 parent 26a8c9b commit 3243c59
Show file tree
Hide file tree
Showing 17 changed files with 715 additions and 68 deletions.
27 changes: 26 additions & 1 deletion bruno/collections/Rafiki/Rafiki Admin APIs/Get Tenant.bru
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ meta {

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

body:graphql {
query GetTenant($id: ID!) {
tenant(id:$id) {
id
kratosIdentityId
createdAt
updatedAt
endpoints {
pageInfo {
startCursor
endCursor
hasNextPage
hasPreviousPage
}
}
}
}
}

body:graphql:vars {
{
"id": "7a0c75bd-6c09-4d38-b013-af89ab91557a"
}
}
54 changes: 51 additions & 3 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.

170 changes: 169 additions & 1 deletion 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

0 comments on commit 3243c59

Please sign in to comment.