Splitting Multiple Page Records in Table

From semantic-mediawiki.org

Admittedly I never used this datatype but I think that this is the best you can get out of it. Rather use subobjects. This example shows something similar to what you probably want to achieve.

15:32, 24 April 2015

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!

16:19, 1 May 2015

Thanks for your feedback. Learned something here, too. :)

21:06, 1 May 2015