async resolve()

in schema.js [90:97]


      async resolve(parent, args) {
        try {
          const result = await compileContract(args.source, args.type);
          return result;
        } catch (error) {
          throw new Error(error);
        }
      },