Module: GraphQL::Types::Relay::ConnectionBehaviors::ClassMethods

Defined in:
lib/graphql/types/relay/connection_behaviors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#edge_classClass (readonly)

Returns:

  • (Class)


25
26
27
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 25

def edge_class
  @edge_class
end

#node_typeClass (readonly)

Returns:

  • (Class)


22
23
24
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 22

def node_type
  @node_type
end

Instance Method Details

#accessible?(ctx) ⇒ Boolean

Returns:



70
71
72
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 70

def accessible?(ctx)
  node_type.accessible?(ctx)
end

#authorized?(obj, ctx) ⇒ Boolean

Returns:



66
67
68
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 66

def authorized?(obj, ctx)
  true # Let nodes be filtered out
end

#edge_nullable(new_value = nil) ⇒ Object

Set the default edge_nullable for this class and its child classes. (Defaults to true.) Use edge_nullable(false) in your base class to make non-null edge fields.



100
101
102
103
104
105
106
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 100

def edge_nullable(new_value = nil)
  if new_value.nil?
    @edge_nullable || superclass.edge_nullable
  else
    @edge_nullable ||= new_value
  end
end

#edge_type(edge_type_class, edge_class: GraphQL::Relay::Edge, node_type: edge_type_class.node_type, nodes_field: true, node_nullable: self.node_nullable, edges_nullable: self.edges_nullable, edge_nullable: self.edge_nullable) ⇒ Object

Configure this connection to return edges and nodes based on edge_type_class.

This method will use the inputs to create: - edges field - nodes field - description

It’s called when you subclass this base connection, trying to use the class name to set defaults. You can call it again in the class definition to override the default (or provide a value, if the default lookup failed).



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 37

def edge_type(edge_type_class, edge_class: GraphQL::Relay::Edge, node_type: edge_type_class.node_type, nodes_field: true, node_nullable: self.node_nullable, edges_nullable: self.edges_nullable, edge_nullable: self.edge_nullable)
  # Set this connection's graphql name
  node_type_name = node_type.graphql_name

  @node_type = node_type
  @edge_type = edge_type_class
  @edge_class = edge_class

  field :edges, [edge_type_class, null: edge_nullable],
    null: edges_nullable,
    description: "A list of edges.",
    legacy_edge_class: edge_class, # This is used by the old runtime only, for EdgesInstrumentation
    connection: false

  define_nodes_field(node_nullable) if nodes_field

  description("The connection type for #{node_type_name}.")
end

#edges_nullable(new_value = nil) ⇒ Object

Set the default edges_nullable for this class and its child classes. (Defaults to true.) Use edges_nullable(false) in your base class to make non-null edges fields.



90
91
92
93
94
95
96
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 90

def edges_nullable(new_value = nil)
  if new_value.nil?
    @edges_nullable || superclass.edges_nullable
  else
    @edges_nullable ||= new_value
  end
end

#node_nullable(new_value = nil) ⇒ Object

Set the default node_nullable for this class and its child classes. (Defaults to true.) Use node_nullable(false) in your base class to make non-null node and nodes fields.



80
81
82
83
84
85
86
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 80

def node_nullable(new_value = nil)
  if new_value.nil?
    @node_nullable || superclass.node_nullable
  else
    @node_nullable ||= new_value
  end
end

#nodes_field(node_nullable: self.node_nullable) ⇒ Object

Add the shortcut nodes field to this connection and its subclasses



62
63
64
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 62

def nodes_field(node_nullable: self.node_nullable)
  define_nodes_field(node_nullable)
end

#scope_items(items, context) ⇒ Object

Filter this list according to the way its node type would scope them



57
58
59
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 57

def scope_items(items, context)
  node_type.scope_items(items, context)
end

#visible?(ctx) ⇒ Boolean

Returns:



74
75
76
# File 'lib/graphql/types/relay/connection_behaviors.rb', line 74

def visible?(ctx)
  node_type.visible?(ctx)
end