joshdholtz / jsonapi-ios

A library for loading data from a JSON API datasource.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Resource metadata

alessandro-shore opened this issue · comments

Is there any way to access the meta object of an included resource:

"included": [ { "meta": { "unresolved": "This is a test message" }, "id": "93ae7543-3ae1-417f-8feb-51217b5f4d01", "type": "participants" },

I've tried adding "meta" as a property and as a "hasOne" relationship, but that didn't work.

Thank you

@alessandro-shore I will work on adding that right now! I was not aware that meta was an optional attribute but I will add that right now 😊

@alessandro-shore You should be able to access the meta with version 1.0.7

pod 'JSONAPI', '~> 1.0.7'

Awesome! Thank you very much!