9 lines
131 B
TypeScript
9 lines
131 B
TypeScript
![]() |
import gql from "graphql-tag";
|
||
|
|
||
|
export const weightFragment = gql`
|
||
|
fragment WeightFragment on Weight {
|
||
|
unit
|
||
|
value
|
||
|
}
|
||
|
`;
|