-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Hi guys,
I'm trying to update the resource using the below code:
`const JsonapiClient = require("@holidayextras/jsonapi-client");
const client = new JsonapiClient("http://localhost:16006");
client.get('plans', 'test_plan', {}, function (err, plan) {
if (err) return console.error(err);
plan.set('name', 'Test plan 2');
plan.sync();
});`
But the update handler is not invoked on my server. Other handlers (create, delete, find, etc.) work as expected.
Metadata
Metadata
Assignees
Labels
No labels