8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
export const weightFragment = gql`
|
|
fragment WeightFragment on Weight {
|
|
unit
|
|
value
|
|
}
|
|
`;
|