GET /my/ingredient_feelings/positive
Returns the positive ingredient feelings of the logged in user
        GET
    /my/ingredient_feelings/positive
  
  curl \
 -X GET https://api.cosmily.com/api/v1/my/ingredient_feelings/positive \
 -H "Authorization: Bearer $ACCESS_TOKEN"
        Response examples (200)
  
  {
  "data": [
    {
      "id": 42,
      "active": true,
      "feeling_type": "positive",
      "created_at": "string",
      "updated_at": "string",
      "ingredient_id": 42,
      "author_user_id": 42
    }
  ],
  "links": {
    "first": "string",
    "last": "string",
    "prev": "string",
    "next": "string"
  }
}
        Response examples (200)
  
  {
  "data": [
    {
      "id": 42,
      "active": true,
      "feeling_type": "positive",
      "created_at": "string",
      "updated_at": "string",
      "ingredient_id": 42,
      "author_user_id": 42
    }
  ],
  "links": {
    "first": "string",
    "last": "string",
    "prev": "string",
    "next": "string"
  }
}