Class: Graphiti::Configuration
Instance Attribute Summary collapse
-
#concurrency ⇒ Boolean
Concurrently fetch sideloads? Defaults to false OR if classes are cached (Rails-only).
-
#context_for_endpoint ⇒ Object
Returns the value of attribute context_for_endpoint.
-
#debug ⇒ Object
Returns the value of attribute debug.
-
#debug_models ⇒ Object
Returns the value of attribute debug_models.
-
#links_on_demand ⇒ Object
Returns the value of attribute links_on_demand.
-
#pagination_links ⇒ Object
Returns the value of attribute pagination_links.
-
#pagination_links_on_demand ⇒ Object
Returns the value of attribute pagination_links_on_demand.
-
#raise_on_missing_sideload ⇒ Boolean
Should we raise when the client requests a relationship not defined on the server? Defaults to true.
-
#respond_to ⇒ Object
Returns the value of attribute respond_to.
- #schema_path ⇒ Object
-
#typecast_reads ⇒ Object
Returns the value of attribute typecast_reads.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
private
Set defaults.
- #with_option(key, value) ⇒ Object
Constructor Details
#initialize ⇒ Configuration
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Set defaults
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/graphiti/configuration.rb', line 24 def initialize @raise_on_missing_sideload = true @concurrency = false @respond_to = [:json, :jsonapi, :xml] @links_on_demand = false @pagination_links_on_demand = false @pagination_links = false @typecast_reads = true self.debug = ENV.fetch("GRAPHITI_DEBUG", true) self.debug_models = ENV.fetch("GRAPHITI_DEBUG_MODELS", false) # FIXME: Don't duplicate graphiti-rails efforts if defined?(::Rails.root) && (root = ::Rails.root) config_file = root.join(".graphiticfg.yml") if config_file.exist? cfg = YAML.load_file(config_file) @schema_path = root.join("public#{cfg["namespace"]}/schema.json") else @schema_path = root.join("public/schema.json") end if (logger = ::Rails.logger) self.debug = logger.level.zero? && debug Graphiti.logger = logger end end end |
Instance Attribute Details
#concurrency ⇒ Boolean
Returns Concurrently fetch sideloads? Defaults to false OR if classes are cached (Rails-only).
9 10 11 |
# File 'lib/graphiti/configuration.rb', line 9 def concurrency @concurrency end |
#context_for_endpoint ⇒ Object
Returns the value of attribute context_for_endpoint.
12 13 14 |
# File 'lib/graphiti/configuration.rb', line 12 def context_for_endpoint @context_for_endpoint end |
#debug ⇒ Object
Returns the value of attribute debug.
18 19 20 |
# File 'lib/graphiti/configuration.rb', line 18 def debug @debug end |
#debug_models ⇒ Object
Returns the value of attribute debug_models.
18 19 20 |
# File 'lib/graphiti/configuration.rb', line 18 def debug_models @debug_models end |
#links_on_demand ⇒ Object
Returns the value of attribute links_on_demand.
13 14 15 |
# File 'lib/graphiti/configuration.rb', line 13 def links_on_demand @links_on_demand end |
#pagination_links ⇒ Object
Returns the value of attribute pagination_links.
15 16 17 |
# File 'lib/graphiti/configuration.rb', line 15 def pagination_links @pagination_links end |
#pagination_links_on_demand ⇒ Object
Returns the value of attribute pagination_links_on_demand.
14 15 16 |
# File 'lib/graphiti/configuration.rb', line 14 def pagination_links_on_demand @pagination_links_on_demand end |
#raise_on_missing_sideload ⇒ Boolean
Returns Should we raise when the client requests a relationship not defined on the server? Defaults to true.
6 7 8 |
# File 'lib/graphiti/configuration.rb', line 6 def raise_on_missing_sideload @raise_on_missing_sideload end |
#respond_to ⇒ Object
Returns the value of attribute respond_to.
11 12 13 |
# File 'lib/graphiti/configuration.rb', line 11 def respond_to @respond_to end |
#schema_path ⇒ Object
52 53 54 |
# File 'lib/graphiti/configuration.rb', line 52 def schema_path @schema_path ||= raise("No schema_path defined! Set Graphiti.config.schema_path to save your schema.") end |
#typecast_reads ⇒ Object
Returns the value of attribute typecast_reads.
16 17 18 |
# File 'lib/graphiti/configuration.rb', line 16 def typecast_reads @typecast_reads end |
Instance Method Details
#with_option(key, value) ⇒ Object
66 67 68 69 70 71 72 |
# File 'lib/graphiti/configuration.rb', line 66 def with_option(key, value) original = send(key) send(:"#{key}=", value) yield ensure send(:"#{key}=", original) end |