ποΈMetaLibrary
Learn how to add, edit and delete MetaLibraries and it's folders.
Get One Library
wranglebot.query.library.one("my-library").fetch();Get Many Libraries
wranglebot.query.library.many().fetch();Add a New Library
const options = {
"name": "mytest",
"pathToLibrary": "/Users/axelrothe/test",
"drops": {
"foo": "bar"
},
"private": false,
"folders": [
{
"name": "01 Footage",
"watch": true,
"folders": [
{
"name": "01 Video"
},
{
"name": "02 Audio"
}
]
},
{
"name": "02 Projects",
"watch": false,
"folders": [
{
"name": "01 Premiere"
},
{
"name": "02 Resolve"
}
]
}
]
}
await wranglebot.query.library.post.one(options); //returns MetaLibraryForce Load a MetaLibrary
Force Unload a MetaLibrary
Update a MetaLibrary
Update Folders
Delete a MetaLibrary
Last updated