12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
![]() |
import gql from "graphql-tag";
|
||
|
|
||
|
export const fragmentGiftCardsSettings = gql`
|
||
|
fragment GiftCardsSettingsFragment on GiftCardSettings {
|
||
|
expiryType
|
||
|
expiryPeriod {
|
||
|
type
|
||
|
amount
|
||
|
}
|
||
|
}
|
||
|
`;
|