Exception: Graphiti::Errors::UnsupportedPagination

Inherits:
Base
  • Object
show all
Defined in:
lib/graphiti/errors.rb

Instance Method Summary collapse

Instance Method Details

#messageObject



728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
# File 'lib/graphiti/errors.rb', line 728

def message
  <<~MSG
    It looks like you are requesting pagination of a sideload, but there are > 1 parents.

    This is not supported. In other words, you can do

    /employees/1?include=positions&page[positions][size]=2

    But not

    /employees?include=positions&page[positions][size]=2

    This is a limitation of most datastores; the same issue exists in ActiveRecord.

    Consider using a named relationship instead, e.g. 'has_one :top_comment'
  MSG
end