I'm beginning to get `SQLseal` working and I like it very much. But I have questions about Obsidian list properties.
I have numerous Obsidian notes with frontmatter like this:
```
---
keys:
- sqlseal
- documentation
prop1: I-am-prop1-01
---
```
This query can find the 'keys' property's individual values:
````
```sqlseal
TABLE ge = file(DATA-ge-01.md)
SELECT * from ge
```
````
%%
I would post an image showing the results, but r/obsidian. apparently won't let me post images. :-(
%%
That query will show me the individual values of the `keys` property, something like:
%%
| --- |
| :-- |
| keys: |
| - sqlseal |
| - documentation |
%%
![[query-00.png]]
%%
%%
%%

%%
Using SQL syntax that I understand better I am able to find property value lists:
%%

%%
![[use-backticks.png]]
%%
%%
%%
| --- |
| :-- |
| keys: |
| ["sqlseal","plugins"] |
| ["sqlseal", "documentati... |
%%
But I don't know how to extract them with SQL. Does SQLseal have a function for that?
P.S. I would post images but r/obsidian apparently [won't let me](https://support.reddithelp.com/hc/en-us/articles/10516331142932-How-do-I-add-images-in-comments)