Query Search by three fields

Hello @Shintaro,

Welcome to the builder.io forum.

Below is an example that does query search based on multiple fields

{
  'query.name.$eq': 'Qwik Blog 2023',
  'query.published.$ne': 'archived',
}
  const articles = await builder.getAll("blog-article", {
    limit: 30,
    query:{
      'name': {$ne: 'Qwik Blog 2023'},
      'lastUpdated': {$ne: "1686026776524"},
    },
  });