23 lines
490 B
TypeScript
23 lines
490 B
TypeScript
import Context from '../../types/express/context';
|
|
import Billing from '../../helpers/billing/index.ee';
|
|
|
|
const getInvoices = async (
|
|
_parent: unknown,
|
|
_params: unknown,
|
|
context: Context
|
|
) => {
|
|
const subscription = await context.currentUser.$relatedQuery('currentSubscription');
|
|
|
|
if (!subscription) {
|
|
return;
|
|
}
|
|
|
|
const invoices = await Billing.paddleClient.getInvoices(
|
|
Number(subscription.paddleSubscriptionId)
|
|
);
|
|
|
|
return invoices;
|
|
};
|
|
|
|
export default getInvoices;
|