Hey all,
I’ve been trying to modify an entry using a mutation where the field I am trying to update is the UID field. I’m currently working with the dgraphjs with grpc. The current structure I have is this:
const mutationBase = {
uid: entryID,
answer_paths: relationID,
};
where relationID is something like 0xc1. I keep getting the following error being thrown. I’m not entirely sure what is needed here to fix this. It looks to me like dgraphjs needs a specific type of data for this fiend, which, in the schema is defined as [uid] type. What is the correct way to parse a UID here? The weird part is that the entryID does not throw this error.