[REQUEST] I want to query only the tags of this page, how to write the datascriptquery?

I want to modify the following code to query only the tabs of the current page, where statement how to modify it?

const page = await logseq.Editor.getCurrentPage();
const currentPageName = await page?.name;

// 查询当前页面的标签
const tags: [string, string, BlockEntity] = await logseq.DB.datascriptQuery( [:find ?content ?tag (pull ?b [*]) :where [?b :block/refs ?page-ref] [?b :block/content ?content] [?page-ref :block/name ?tag] [?page-ref :block/page ${currentPageName}] ] );

  const page = await logseq.Editor.getCurrentPage();
  const currentPageName = await page?.name;

// 查询当前页面的标签
const tags: [string, string, BlockEntity][] = await logseq.DB.datascriptQuery(`
  [:find ?content ?tag (pull ?b [*])
    :where
    [?b :block/refs ?page-ref]
    [?b :block/content ?content]
    [?page-ref :block/name ?tag]  
    [?page-ref :block/page ${currentPageName}]
  ]
  `);