Commit 56b8124a by Ryan McKinley Committed by GitHub

DataFrame: add a writable flag to fields (#29869)

parent 1506ec7b
......@@ -49,6 +49,11 @@ export interface FieldConfig<TOptions extends object = any> {
path?: string;
/**
* True if data source can write a value to the path. Auth/authz are supported separately
*/
writeable?: boolean;
/**
* True if data source field supports ad-hoc filters
*/
filterable?: boolean;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment