async resolve()

in schema.js [109:123]


      async resolve(parent, args) {
        try {
          const result = await deployContract(
            args.config,
            args.contract,
            args.name,
            args.arguments,
            args.owner,
	    args.type
          );
          return result;
        } catch (error) {
          throw new Error(error);
        }
      },