modifyDataPool
This mutation selects a Data Pool by its ID or unique name and modifies it to have the given unique name, description, and data retention time.
If any of the optional arguments are omitted, those properties will be unchanged on the Data Pool.
A Data Pool is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries.
Arguments
input required modifyDataPoolInput
The fields for modifying a Data Pool.
input.idOrUniqueName required idOrUniqueName
The ID or unique name of the Data Pool to modify.
input.uniqueName optional String
The Data Pool's new unique name.
input.description optional String
The Data Pool's new description.
input.dataRetentionInDays optional Int
The Data Pool's new data retention in days.
input.syncing optional DataPoolSyncingInput
The Data Pool's new syncing settings.
Returns
Nullable DataPoolOrFailureResponse
The result of a mutation which creates or modifies a Data Pool.
If successful, an DataPoolResponse
will be returned; otherwise, a
FailureResponse
will be returned.