We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
create()
update()
deleteOne()
getOne()
getList()
getMany()
Note Not all the methods have been implemented. See all here.
create({ resource: "posts", variables: { title: "New post", body: "New post body" } });
update({ resource: "posts", id: 1, variables: { title: "Updated post" } });
deleteOne({ resource: "posts", id: 1 });
getOne({ resource: "posts", id: 3 });
getList({ resource: "posts" });
getMany({ resource: "posts", ids: [1, 2, 3] });