saleor-dashboard/src/fragments/weight.ts

9 lines
138 B
TypeScript
Raw Normal View History

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