Module: GraphQL::Types::Relay::ConnectionBehaviors
- Extended by:
- Forwardable
- Included in:
- BaseConnection
- Defined in:
- lib/graphql/types/relay/connection_behaviors.rb
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
-
#edges ⇒ Object
-
#nodes ⇒ Object
By default this calls through to the ConnectionWrapper’s edge nodes method, but sometimes you need to override it to support the
nodes
field.
Class Method Details
Instance Method Details
#edges ⇒ Object
141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 141 def edges if @object.is_a?(GraphQL::Pagination::Connection) @object.edges elsif context.interpreter? context.schema.after_lazy(object.edge_nodes) do |nodes| nodes.map { |n| self.class.edge_class.new(n, object) } end else # This is done by edges_instrumentation @object.edge_nodes end end |
#nodes ⇒ Object
By default this calls through to the ConnectionWrapper’s edge nodes method,
but sometimes you need to override it to support the nodes
field
137 138 139 |
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 137 def nodes @object.edge_nodes end |