Sha256: 899c7b7289b0a359f71c055cffc26fe6260f27bbc53ed325b537e576df0a7bf5

Contents?: true

Size: 1.57 KB

Versions: 11

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true
module GraphQL
  module Relay
    module ConnectionType
      class << self
        # @return [Boolean] If true, connection types get a `nodes` shortcut field
        attr_accessor :default_nodes_field
        # @return [Boolean] If true, connections check for reverse-direction `has*Page` values
        attr_accessor :bidirectional_pagination
      end

      self.default_nodes_field = false
      self.bidirectional_pagination = false

      # Create a connection which exposes edges of this type
      def self.create_type(wrapped_type, edge_type: nil, edge_class: GraphQL::Relay::Edge, nodes_field: ConnectionType.default_nodes_field, &block)
        custom_edge_class = edge_class

        # Any call that would trigger `wrapped_type.ensure_defined`
        # must be inside this lazy block, otherwise we get weird
        # cyclical dependency errors :S
        ObjectType.define do
          type_name = wrapped_type.is_a?(GraphQL::BaseType) ? wrapped_type.name : wrapped_type.graphql_name
          edge_type ||= wrapped_type.edge_type
          name("#{type_name}Connection")
          description("The connection type for #{type_name}.")
          field :edges, types[edge_type], "A list of edges.", edge_class: custom_edge_class, property: :edge_nodes

          if nodes_field
            field :nodes, types[wrapped_type],  "A list of nodes.", property: :edge_nodes
          end

          field :pageInfo, !PageInfo, "Information to aid in pagination.", property: :page_info
          block && instance_eval(&block)
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
graphql-1.8.3 lib/graphql/relay/connection_type.rb
graphql-1.8.2 lib/graphql/relay/connection_type.rb
graphql-1.8.1 lib/graphql/relay/connection_type.rb
graphql-1.8.0 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre11 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre10 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre9 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre8 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre7 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre6 lib/graphql/relay/connection_type.rb
graphql-1.8.0.pre5 lib/graphql/relay/connection_type.rb