feat: Add getPaymentPortalUrl graphQL query

This commit is contained in:
Faruk AYDIN
2023-03-06 12:45:10 +01:00
parent ba99df645b
commit cabbb45031
3 changed files with 23 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ type Query {
): [SubstepArgument]
getCurrentUser: User
getUsageData: GetUsageData
getPaymentPortalUrl: GetPaymentPortalUrl
getAutomatischInfo: GetAutomatischInfo
healthcheck: AppHealth
}
@@ -475,6 +476,10 @@ type GetUsageData {
nextResetAt: String
}
type GetPaymentPortalUrl {
url: String
}
schema {
query: Query
mutation: Mutation