kibana/docs/development/core/server/kibana-plugin-server.savedobjectsupdateresponse.md
Court Ewing 3f56b9b265
[core] Do not overwrite saved object references if not specified (#47248) (#47519)
* saved objects: allow partial update without references

For normal attributes, the update API for saved objects supports partial
updates, where it will only attempt to change those attributes you
specify. References should behave the same way otherwise they will be
replaced entirely if you call update without specifying the original
references.
2019-10-08 10:36:54 -04:00

818 B

Home > kibana-plugin-server > SavedObjectsUpdateResponse

SavedObjectsUpdateResponse interface

Signature:

export interface SavedObjectsUpdateResponse<T extends SavedObjectAttributes = any> extends Omit<SavedObject<T>, 'attributes' | 'references'> 

Properties

Property Type Description
attributes Partial<T>
references SavedObjectReference[] | undefined