feat(core): billing history pagination (#4787)

This commit is contained in:
Cats Juice
2023-10-31 17:47:59 +08:00
committed by GitHub
parent 8ca53326a7
commit 93e286177f
7 changed files with 86 additions and 15 deletions

View File

@@ -23,6 +23,9 @@ type UserType {
"""User password has been set"""
hasPassword: Boolean
token: TokenType!
"""Get user invoice count"""
invoiceCount: Int!
subscription: UserSubscription
invoices(take: Int = 8, skip: Int): [UserInvoice!]!
}