Add embryo to products

This commit is contained in:
Niklas Fondberg
2021-04-06 15:49:41 +02:00
parent 813f4c8e47
commit 949c641410
10 changed files with 110 additions and 4 deletions
+6
View File
@@ -6,6 +6,7 @@ const typeDefs = gql`
type Query {
orders: [Order]
order(id: ID!): Order
products: [Product]
}
type Order {
@@ -56,6 +57,11 @@ const typeDefs = gql`
market: String
locale: String
}
type Product {
id: ID!
artNo: String!
}
`;
export { typeDefs };