Files
automatisch/packages/web/src/graphql/queries/get-invoices.ee.ts
2023-03-27 08:22:24 +00:00

15 lines
199 B
TypeScript

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