| Meme schema was updated on the server and need to be updated on the app. From:
type Meme { |
id: ID! @isUnique |
ownerid: ID! |
photourl: String! |
owner: String |
likes: Int! |
comments: [Comment!]! |
}
|
To:
type Meme { |
id: ID! @isUnique |
photourl: String! |
likes: Int! |
owner: [Profile!]! |
comments: [Comment!]! |
}
|
See: https://github.com/aerogear/data-sync-server/pull/77 |