Splitting Multiple Page Records in Table
From semantic-mediawiki.org
Fragment of a discussion from Help talk:Type Record
Ah I tried to get that to work but it seemed like a lot more than I am prepared for. However, I was able to get it to work. Instead of querying the Record Type I just queried the fields individually and was able to get the results I wanted.
Essentially instead of:
{{#ask: [[Has Dates::+]]
| ?Has Dates=Date |+index=2
| ?Has Dates=Event |+index=1
| format=table
}}
I wound up querying this way:
{{#ask: [[Tdate::+]]
| ?Tdate=Date
| ?Tevent=Event
| format=table
}}
Seems to be working so far! Thanks for the idea and helping me look more outside the box!