import gql from 'graphql-tag' export const listContributionLinks = gql` query ($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC) { listContributionLinks(currentPage: $currentPage, pageSize: $pageSize, order: $order) { links { id amount name memo code link createdAt validFrom validTo maxAmountPerMonth cycle maxPerCycle } count } } `