MCPcopy
hub / github.com/dvajs/dva / patch

Function patch

examples/user-dashboard/src/pages/users/services/users.js:14–19  ·  view source on GitHub ↗
(id, values)

Source from the content-addressed store, hash-verified

12}
13
14export function patch(id, values) {
15 return request(`/api/users/${id}`, {
16 method: 'PATCH',
17 body: JSON.stringify(values),
18 });
19}
20
21export function create(values) {
22 return request('/api/users', {

Callers

nothing calls this directly

Calls 1

requestFunction · 0.50

Tested by

no test coverage detected