feat: make payment plans dynamic

This commit is contained in:
Ali BARIN
2023-03-20 21:46:20 +00:00
committed by Faruk AYDIN
parent f1358c7ad1
commit 3598d43938
4 changed files with 46 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
import { gql } from '@apollo/client';
export const GET_PAYMENT_PLANS = gql`
query GetPaymentPlans {
getPaymentPlans {
name
limit
price
productId
}
}
`;