Optional columns

This commit is contained in:
Jake Barnby
2025-08-07 00:47:11 +12:00
parent bf1af094c1
commit 892cfe01b2
+1 -1
View File
@@ -453,7 +453,7 @@ App::post('/v1/migrations/csv/exports')
))
->param('bucketId', '', new UID(), 'Storage bucket unique ID where the exported CSV will be stored.')
->param('resourceId', null, new CompoundUID(), 'Composite ID in the format {databaseId:collectionId}, identifying a collection within a database to export.')
->param('columns', [], new ArrayList(new Text(255)), 'List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.')
->param('columns', [], new ArrayList(new Text(255)), 'List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.', true)
->inject('response')
->inject('dbForProject')
->inject('project')