9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
![]() |
import gql from "graphql-tag";
|
||
|
|
||
|
export const fragmentTimePeriod = gql`
|
||
|
fragment TimePeriod on TimePeriod {
|
||
|
amount
|
||
|
type
|
||
|
}
|
||
|
`;
|