Files
automatisch/packages/web/src/graphql/queries/get-payment-plans.ee.ts
2023-03-21 00:50:33 +03:00

13 lines
189 B
TypeScript

import { gql } from '@apollo/client';
export const GET_PAYMENT_PLANS = gql`
query GetPaymentPlans {
getPaymentPlans {
name
limit
price
productId
}
}
`;