Files
api/app/graphql/schema/resolvers.js
T
Alexis Tyler 1da02e1610 add license header
Signed-off-by: Alexis Tyler <xo@wvvw.me>
2019-06-14 11:08:16 +09:30

21 lines
595 B
JavaScript

/*
* Copyright 2005-2019, Lime Technology
* Copyright 2018-2019, Alexis Tyler
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
module.exports = function (deepmerge, GraphQLJSON, GraphQLLong, GraphQLUUID) {
return deepmerge.all([
{
JSON: GraphQLJSON,
Long: GraphQLLong,
UUID: GraphQLUUID
}
]);
};