(className, objectId, fields, config, auth, info)
| 10 | }; |
| 11 | |
| 12 | const updateObject = async (className, objectId, fields, config, auth, info) => { |
| 13 | if (!fields) { |
| 14 | fields = {}; |
| 15 | } |
| 16 | |
| 17 | return ( |
| 18 | await rest.update(config, auth, className, { objectId }, fields, info.clientSDK, info.context) |
| 19 | ).response; |
| 20 | }; |
| 21 | |
| 22 | const deleteObject = async (className, objectId, config, auth, info) => { |
| 23 | await rest.del(config, auth, className, objectId, info.context); |
nothing calls this directly
no test coverage detected
searching dependent graphs…