This commit is contained in:
Niklas Fondberg
2021-04-06 09:56:18 +02:00
parent a1280f4c0e
commit 4532fbc853
12 changed files with 5506 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { gql } from 'apollo-server';
const typeDefs = gql`
type Query {
orders: [Order]
order(id: ID!): Order
}
type Order {
id: ID!
countryCode: String
}
`;
export { typeDefs };