portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
28 lines (26 loc) • 509 B
text/typescript
import gql from 'graphql-tag';
export const WALLET_CARDS_ADMIN_CARD = gql`
query WalletCardsAdminCard($input: WalletCardsCardInput!) {
walletCardsAdminCard(input: $input) {
card {
cardId
usersCount
name
description
expiryDate
benefits {
id
name
label
description
thirdPartyLink
company {
name
logo
websiteUrl
}
}
}
}
}
`;