Module: Yogurt::QueryResult
Instance Method Summary collapse
- #__typename ⇒ Object
- #__unexpected_type(field:, observed_type:, expected_types:) ⇒ Object
- #raw_result ⇒ Object
Methods included from Inspectable
Instance Method Details
#__typename ⇒ Object
18 |
# File 'lib/yogurt/query_result.rb', line 18 def __typename; end |
#__unexpected_type(field:, observed_type:, expected_types:) ⇒ Object
21 22 23 |
# File 'lib/yogurt/query_result.rb', line 21 def __unexpected_type(field:, observed_type:, expected_types:) Kernel.raise(UnexpectedObjectType.new(field: field, observed_type: observed_type, expected_types: expected_types)) end |
#raw_result ⇒ Object
15 |
# File 'lib/yogurt/query_result.rb', line 15 def raw_result; end |