
* Update apollo to v3 * Fix imports * Add generated file to ignored * Use proper import * Tidy up code * Remove unused packages * Fix tests
8 lines
138 B
TypeScript
8 lines
138 B
TypeScript
import { gql } from "@apollo/client";
|
|
|
|
export const weightFragment = gql`
|
|
fragment WeightFragment on Weight {
|
|
unit
|
|
value
|
|
}
|
|
`;
|