
* Update apollo to v3 * Fix imports * Add generated file to ignored * Use proper import * Tidy up code * Remove unused packages * Fix tests
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { gql } from "@apollo/client";
|
|
|
|
export const fragmentTimePeriod = gql`
|
|
fragment TimePeriod on TimePeriod {
|
|
amount
|
|
type
|
|
}
|
|
`;
|