import gql from 'graphql-tag' export const creationTransactionList = gql` query ($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC, $userId: Int!) { creationTransactionList( currentPage: $currentPage pageSize: $pageSize order: $order userId: $userId ) { contributionCount contributionList { id amount createdAt confirmedAt contributionDate memo state } } } `