saleor-dashboard/src/fragments/weight.ts

9 lines
131 B
TypeScript
Raw Normal View History

2020-07-13 16:51:05 +00:00
import gql from "graphql-tag";
export const weightFragment = gql`
fragment WeightFragment on Weight {
unit
value
}
`;