feat: make invoices dynamic

This commit is contained in:
Ali BARIN
2023-03-27 08:22:24 +00:00
parent fd24dbee21
commit 372cdb10d6
5 changed files with 91 additions and 145 deletions

View File

@@ -0,0 +1,14 @@
import { gql } from '@apollo/client';
export const GET_INVOICES = gql`
query GetInvoices {
getInvoices {
id
amount
currency
payout_date
receipt_url
}
}
`;