Rank 4: Virtual Machine
I have a function executed like this
Map<String, dynamic> data = {
"followerId": state.user!.$id,
"followerName": state.profile!.name,
"followerUserName": state.profile!.username,
"followeeId": otherUserId
};
String body = jsonEncode(data);
await functions.createExecution(
functionId: appwriteConsts.functions.onFollowUser,
body: body,
xasync: true,
scheduledAt: scheduleFor.toUtc().toIso8601String(),
);
Upon execution, checking my Appwrite Cloud console, I see that the body is not there? Is this a bug, an unimplemented feature or there's something I'm not doing well?