saleor-dashboard/src/fragments/timePeriod.ts
Dominik Żegleń 2a52eb581c
Update apollo to v3 (#1837)
* Update apollo to v3

* Fix imports

* Add generated file to ignored

* Use proper import

* Tidy up code

* Remove unused packages

* Fix tests
2022-02-21 14:32:38 +01:00

8 lines
143 B
TypeScript

import { gql } from "@apollo/client";
export const fragmentTimePeriod = gql`
fragment TimePeriod on TimePeriod {
amount
type
}
`;