http://jsonapi.org/format/#fetching-includes > In order to request resources related to other resources, a dot-separated path for each relationship name can be specified: --- Currently a request like this will fail to include anything. ``` /articles/1?include=comments.author ``` However it will work if I include `comments` and `comments.author`. ``` /articles/1?include=comments,comments.author ```