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 / createItems

Function: createItems()

createItems<Schema, Collection, TQuery>(collection, items, query?): RestCommand<IfAny<Schema, Record<string, any>, Merge<MappedFunctionFields<Schema, UnpackList<IfAny<Schema, any, Collection extends keyof Schema ? UnpackList<...> extends object ? ... & ... : never : never>>> extends FF ? MapFlatFields<UnpackList<IfAny<Schema, any, Collection extends keyof Schema ? UnpackList<...> extends object ? ... & ... : never : never>>, FieldsWildcard<UnpackList<IfAny<Schema, any, Collection extends keyof ... ? ... extends ... ? ... : ... : never>>, 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<IfAny<Schema, any, (...) extends (...) ? (...) : (...)>> ? Extract<UnpackList<(...)>[Field], ItemType<Schema>> extends RelatedCollection ? IsNullable<UnpackList<(...)>[Field], null | ((...) extends (...) ? (...) : (...)), RelatedCollection extends (...)[] ? (...) extends (...) ? (...) : (...) : ApplyNestedQueryFields<(...), (...), (...)>> : never : never }>>[], Schema>

Create new items in the given collection.

Type parameters

Schema extends object

Collection extends string | number | symbol

TQuery extends Query<Schema, Schema[Collection]>

Parameters

collection: Collection

The collection of the item

items: Partial<UnpackList<Schema[Collection]>>[]

The items to create

query?: TQuery

Optional return data query

Returns

RestCommand<IfAny<Schema, Record<string, any>, Merge<MappedFunctionFields<Schema, UnpackList<IfAny<Schema, any, Collection extends keyof Schema ? UnpackList<...> extends object ? ... & ... : never : never>>> extends FF ? MapFlatFields<UnpackList<IfAny<Schema, any, Collection extends keyof Schema ? UnpackList<...> extends object ? ... & ... : never : never>>, FieldsWildcard<UnpackList<IfAny<Schema, any, Collection extends keyof ... ? ... extends ... ? ... : ... : never>>, 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<IfAny<Schema, any, (...) extends (...) ? (...) : (...)>> ? Extract<UnpackList<(...)>[Field], ItemType<Schema>> extends RelatedCollection ? IsNullable<UnpackList<(...)>[Field], null | ((...) extends (...) ? (...) : (...)), RelatedCollection extends (...)[] ? (...) extends (...) ? (...) : (...) : ApplyNestedQueryFields<(...), (...), (...)>> : never : never }>>[], Schema>

Returns the item objects of the item that were created.

Source

rest/commands/create/items.ts:21