Query List of Values of Nested Frontmatter Property (So Can Query Longform Scenes, in Order)

What I’m trying to do

Ultimately what I’m trying to do is get a table of links to all my notes in a Longform project, ordered as they are in the Longform plugin.

To do so, I’m attempting to use Dataview to query the (nested) frontmatter of the project’s Index file (where Longform keeps the scene order) and transform the results into links.

NOTE: I realize I could avoid this all by simply adding numbers to the start of all the file names, then use a Dataview query on that folder, sorting by number… But I like the freedom of not having to relabel everything if I reorder them or add a new one in the middle. Plus it’s an excuse to learn more about Dataview and Obsidian!

Things I have tried

I think I’m pretty close, as I can get it to work on test files using the following query:

```dataview
TABLE map(longform.scenes, (t) => "[[" + t + "]]") as Scenes
FROM "1 Drafts/My Story/Index"
```

However, when trying to target the Index file for my Longform project (like follows), it returns a blank result in the table.

---
longform:
  format: scenes
  title: My Story
  workflow: Default Workflow
  sceneFolder: /
  scenes:
    - First Scene
    - Next Scene
    - And another scene
  ignoredFiles: []
---

```dataview
TABLE map(longform.scenes, (t) => "[[" + t + "]]") as Scenes
FROM "1 Drafts/My Story/Index"

Though if I remove certain other key-value pairs in the frontmatter, it works. Namely, anything containing the word “scene” (so: “format: scenes” and “sceneFolder: /”).

But because those are necessary for the function of the plugin, I can’t just remove them. So I guess my question is:

Is there a way to be more specific in my query to ignore the other frontmatter (or another way I haven’t thought of) so I can get my desired result?

I am very interested by your topic and I am afraid I cannot help you.
I am curious : why do you want to do that.

on my side I dislike the fact that I have to move the notes in one folder when using longform.
I’d prefer to create scene list with links
I am using long form to create a unique note (exported as pdf)

Any progress on this? I came here looking for the same thing, trying to move away from Scrivener. I’m wondering if the Longform method using an index file might not be the best paradigm for Obsidian, rather than putting structure info in each note’s front matter (c.f. https://github.com/SebastianMC/obsidian-custom-sort) and using something like
https://github.com/l1xnan/obsidian-better-export-pdf .

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.