Method: GraphQL::Schema::Field#has_max_page_size?
- Defined in:
- lib/graphql/schema/field.rb
#has_max_page_size? ⇒ Boolean
Returns True if this field's #max_page_size should override the schema default.
615 616 617 |
# File 'lib/graphql/schema/field.rb', line 615 def has_max_page_size? !NOT_CONFIGURED.equal?(@max_page_size) || (@resolver_class && @resolver_class.has_max_page_size?) end |