Lambda JSON Mutation

@jdgamble555 this is still being tested. It should be ready by tomorrow.

2 Likes

@jdgamble555 Lambda JSON mutations are now available in Dgraph Cloud.

Thanks @dmai.

I can confirm that it works! I used this code:

    const args = {
        set: {
            'User.displayName': 'test',
            'User.email': 'test@test.com',
            "dgraph.type": "User"
        }
    };

    const r = await dql.mutate(args);
    console.log(r);

It really means a lot that you were able to get it going so quickly!

Thank you sir!

J

1 Like