Amit Suryavanshi

Results 3 issues of Amit Suryavanshi

The `fields` parameter in `jsonapi-serializable` respects the relationship names(https://github.com/graphiti-api/graphiti/blob/master/lib/graphiti/serializer.rb#L35). So on `GET posts` api, if I request `fields[posts]=comments`, the response payload will only have `comments` relationship on posts. In graphiti...

Given, ``` class Person has_many :out, :knows, model_class: 'Person', type: nil has_many :in, :posts, type: :posts end class Post has_one :out, :owner, origin: :posts, model_class: 'Person' end ``` Currently we...

feature

Additional information which could be helpful if relevant to your issue: ### Code example (inline, gist, or repo) Following spec in `spec/e2e/association_proxy_spec.rb` fails, ``` it 'does not fetches duplicate nodes...

bug