class GraphQL::StaticValidation::FragmentSpreadsArePossible::FragmentSpread

Attributes

node[R]
parent_type[R]
path[R]

Public Class Methods

new(node:, parent_type:, path:) click to toggle source
# File lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb, line 57
def initialize(node:, parent_type:, path:)
  @node = node
  @parent_type = parent_type
  @path = path
end