Module: GraphQLSchema::Deprecatable

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

Instance Method Summary collapse

Instance Method Details

#deprecated?Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/graphql_schema.rb', line 56

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

#deprecation_reasonObject



60
61
62
# File 'lib/graphql_schema.rb', line 60

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