Address embryo

This commit is contained in:
Niklas Fondberg
2021-04-07 18:30:56 +02:00
parent 1b304930d3
commit f3f39b2097
5 changed files with 266 additions and 19 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
import orders from './orders-resolver';
import orders, { ContactInformation } from './orders-resolver';
import products from './products-resolver';
import { DateTimeScalar } from './datetime-type';
const resolvers = {
Query: { ...orders, ...products },
DateTime: DateTimeScalar,
ContactInformation,
};
export default resolvers;