How to pull out object id from list of object id in realm js

How can I pull object id from list of object ids

Here’s my schema:

export const regulardossierSchema = {
  name: 'regulardossier',
  properties: {
    _id: 'objectId?',
    __v: 'int?',
    _partition_key: 'string?',
    article: 'objectId[]',
    catalog_id: 'objectId',
    createdAt: 'date?',
    description: 'string?',
    name: 'string',
    taxonomy_id: 'objectId',
    updatedAt: 'date?',
    user_id: 'objectId',
  },
  primaryKey: '_id',
};

I want to delete(filter) the article list of object ids. Thanks