Sorry, no results found for "".
The name of the filter
"Draft posts"
The actual filter
{ status: { eq: "draft" } }
Whether it's a shared filter or not
Returns a resource object of type upload_filter
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const uploadFilterId = "-Lo34LFSTLmgPToamzJLcg";
const uploadFilter = await client.uploadFilters.update(uploadFilterId, { id: "-Lo34LFSTLmgPToamzJLcg", name: "Draft posts", filter: { status: { eq: "draft" } }, });
// Check the 'Returned output' tab for the result ☝️ console.log(uploadFilter);}
run();
{ id: "-Lo34LFSTLmgPToamzJLcg", name: "Draft posts", filter: { status: { eq: "draft" } }, shared: true,}