From 49faf5aed33768c3a4e9f622ae3a422c27238d08 Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Wed, 8 Apr 2026 11:34:44 -0400 Subject: [PATCH] fix(cli): node fields columns uuid field didn't exist and ident is nonsensical as `list node` explicitly filters out all tags and properties which are the nodes with idents --- src/main/logseq/cli/command/list.cljs | 2 -- src/main/logseq/cli/format.cljs | 1 - 2 files changed, 3 deletions(-) diff --git a/src/main/logseq/cli/command/list.cljs b/src/main/logseq/cli/command/list.cljs index 1bffeaf372..fa459aebfb 100644 --- a/src/main/logseq/cli/command/list.cljs +++ b/src/main/logseq/cli/command/list.cljs @@ -136,9 +136,7 @@ (def ^:private list-node-field-map {"id" :db/id - "ident" :db/ident "title" :block/title - "uuid" :block/uuid "type" :node/type "page-id" :block/page-id "page-title" :block/page-title diff --git a/src/main/logseq/cli/format.cljs b/src/main/logseq/cli/format.cljs index 15d629acbc..776e0254cf 100644 --- a/src/main/logseq/cli/format.cljs +++ b/src/main/logseq/cli/format.cljs @@ -374,7 +374,6 @@ ["TYPE" (fn [item _] (normalize-node-type (:node/type item))) [:node/type] true] ["PAGE-ID" (fn [item _] (:block/page-id item)) [:block/page-id]] ["PAGE-TITLE" (fn [item _] (:block/page-title item)) [:block/page-title]] - ["IDENT" (fn [item _] (:db/ident item)) [:db/ident]] ["UPDATED-AT" (fn [item now-ms] (human-ago (or (:updated-at item) (:block/updated-at item)) now-ms)) [:updated-at :block/updated-at]] ["CREATED-AT" (fn [item now-ms] (human-ago (or (:created-at item) (:block/created-at item)) now-ms)) [:created-at :block/created-at]]])