Files
automatisch/packages/web/src/graphql/queries/get-invoices.ee.js
2024-02-29 09:38:32 +00:00

13 lines
197 B
JavaScript

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