You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Advanced queries are now edited in a code block which means queries are syntax highlighted.
95
95
* Some old advanced queries will no longer work and need to be rewritten. For engineers, see [this file](https://github.com/logseq/logseq/blob/feat/db/deps/db/src/logseq/db/frontend/schema.cljs) and compare `schema` with `schema-for-db-based-graph` to see what has changed.
96
+
* The attribute `:block/content` was renamed to `:block/title`. If used in an advanced query including in config.edn's `:default-queries`, change it to use `:block/title` e.g. `[?b :block/content "content"]` -> `[?b :block/title "content"]`
96
97
* These advanced query options are deprecated: :title, :group-by-page? and :collapsed?.
97
98
* Since block timestamps are available, they display in table view where possible.
98
99
@@ -121,5 +122,5 @@ Miscelleanous changes:
121
122
## File Graph Changes
122
123
123
124
* There is no longer a [conversion feature for filename formats](https://docs.logseq.com/#/page/filename%20format)
124
-
* The attribute `:block/content`no longer exists. If used in an advanced query including in config.edn's `:default-queries`, change it to use `:block/title` e.g. `[?b :block/content "content"]` -> `[?b :block/title "content"]`
125
+
* The attribute `:block/content`was renamed to `:block/title`. If used in an advanced query including in config.edn's `:default-queries`, change it to use `:block/title` e.g. `[?b :block/content "content"]` -> `[?b :block/title "content"]`
125
126
* The attribute `:block/journal?` no longer exists. If used in an advanced query including in config.edn's `:default-queries`, change it to use `:block/type` e.g. `[?p :block/journal? true]` -> `[?p :block/type "journal"]`
0 commit comments