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

This commit is contained in:
Ryan McKinley 2020-12-16 06:59:31 -08:00 committed by GitHub
parent 1506ec7bfc
commit 56b8124afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,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
*/