775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
|
# File 'lib/graphiti/errors.rb', line 775
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
|