Skip to content
On this page

This is an auto-generated document to support extension builders understand the internal packages they can utilize. To find our written guides, tutorials, and API/SDK reference, check out our main docs .

Directus / @directus/sdk / rest / updateFlows

Function: updateFlows()

updateFlows<Schema, TQuery>(keys, item, query?): RestCommand<IfAny<Schema, Record<string, any>, Merge<MappedFunctionFields<Schema, UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>> extends FF ? MapFlatFields<UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>, FieldsWildcard<UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>, Exclude<UnpackList<Mutable<...[...]>>, PickRelationalFields<UnpackList<...>> extends never ? never : AllKeys<... extends ... ? ... : ...>>>, FF extends Record<string, string> ? FF : Record<string, string>> : never, PickRelationalFields<UnpackList<Mutable<TQuery["fields"]>>> extends never ? never : { [Field in string | number | symbol]: Field extends keyof UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>> ? Extract<UnpackList<(...)>[Field], ItemType<Schema>> extends RelatedCollection ? IsNullable<UnpackList<(...)>[Field], null | ((...) extends (...) ? (...) : (...)), RelatedCollection extends (...)[] ? (...) extends (...) ? (...) : (...) : ApplyNestedQueryFields<(...), (...), (...)>> : never : never }>>[], Schema>

Update multiple existing flows.

Type parameters

Schema extends object

TQuery extends Query<Schema, DirectusFlow<Schema>>

Parameters

keys: DirectusFlow<Schema>["id"][]

item: Partial<DirectusFlow<Schema>>

query?: TQuery

Returns

RestCommand<IfAny<Schema, Record<string, any>, Merge<MappedFunctionFields<Schema, UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>> extends FF ? MapFlatFields<UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>, FieldsWildcard<UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>>, Exclude<UnpackList<Mutable<...[...]>>, PickRelationalFields<UnpackList<...>> extends never ? never : AllKeys<... extends ... ? ... : ...>>>, FF extends Record<string, string> ? FF : Record<string, string>> : never, PickRelationalFields<UnpackList<Mutable<TQuery["fields"]>>> extends never ? never : { [Field in string | number | symbol]: Field extends keyof UnpackList<MergeCoreCollection<Schema, "directus_flows", Object>> ? Extract<UnpackList<(...)>[Field], ItemType<Schema>> extends RelatedCollection ? IsNullable<UnpackList<(...)>[Field], null | ((...) extends (...) ? (...) : (...)), RelatedCollection extends (...)[] ? (...) extends (...) ? (...) : (...) : ApplyNestedQueryFields<(...), (...), (...)>> : never : never }>>[], Schema>

Returns the flow objects for the updated flows.

Throws

Will throw if keys is empty

Source

rest/commands/update/flows.ts:21