Comment is using an ower to the store the name of the comment owner. We should update the data-sync-server memeolist schema to make it a real GraphQL relationship.
From:
{code} type Comment { id: ID! @isUnique comment: String! owner: String! } {code}
To:
{code} type Comment { id: ID! @isUnique comment: String! owner: Profile! } {code}
|
|