mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 12:06:35 +08:00
feat(core): billing history pagination (#4787)
This commit is contained in:
@@ -359,6 +359,19 @@ query getWorkspaces {
|
||||
}`,
|
||||
};
|
||||
|
||||
export const getInvoicesCountQuery = {
|
||||
id: 'getInvoicesCountQuery' as const,
|
||||
operationName: 'getInvoicesCount',
|
||||
definitionName: 'currentUser',
|
||||
containsFile: false,
|
||||
query: `
|
||||
query getInvoicesCount {
|
||||
currentUser {
|
||||
invoiceCount
|
||||
}
|
||||
}`,
|
||||
};
|
||||
|
||||
export const invoicesQuery = {
|
||||
id: 'invoicesQuery' as const,
|
||||
operationName: 'invoices',
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
query getInvoicesCount {
|
||||
currentUser {
|
||||
invoiceCount
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user