Module: GraphQLSchema::Deprecatable

Included in:
EnumValue, Field
Defined in:
lib/graphql_schema.rb

Instance Method Summary collapse

Instance Method Details

#deprecated?Boolean

Returns:

  • (Boolean)


64
65
66
# File 'lib/graphql_schema.rb', line 64

def deprecated?
  @hash.fetch('isDeprecated')
end

#deprecation_reasonObject



68
69
70
# File 'lib/graphql_schema.rb', line 68

def deprecation_reason
  @hash.fetch('deprecationReason')
end