in schema.js [75:82]
async resolve(parent, args) {
try {
const result = await addAddress(args.config, args.address, args.type);
return result;
} catch (error) {
throw new Error(error);
}
},