Meme schema was updated on the server and need to be updated on the app.
From:
{code} type Comment { id: ID! @isUnique comment: String! owner: String! } {code}
To:
{code} type Comment { id: ID! @isUnique comment: String! owner: Profile! } {code}
See: https://github.com/aerogear/data-sync-server/pull/82 |
|