Getting an Author's Blog Posts

Hello

Is it possible to get an author’s blog posts?

I am trying to build a ‘Team’ page which has a dynamic page for each team member. I want to display a “Blog Posts by this Person” section.
I have tried to filter using the wix-Data api, but there is no author field (or anything related to that) in the Blog collection. Also, the collection is ‘Read-Only’, so I can’t add in that field.

Has anyone faced this in the past?
How would I go about solving this through CORVID?
Do I need to create a ‘Category’ for each contributor?

Curious about this as well

Has anybody figured this out?

I want to do the same because the members area solution to show this is too poor to use.
I noticed there is a author field in de data collection results.
However, if I use it in a query, I get some poor (empty) exception.
console . log ( wixUsers.currentUser.id )
wixData . query ( ‘Blog/Posts’ )
. eq ( “author” , wixUsers.currentUser.id )
. find ()
. then ( data => data.items.forEach ( i => console.log(i )))
. catch ( err => console . error ( err ))