Module: Graphql::PersistedDocuments
- Defined in:
- lib/graphql/persisted_documents.rb,
lib/graphql/persisted_documents/rack.rb,
lib/graphql/persisted_documents/version.rb,
lib/graphql/persisted_documents/persister.rb,
lib/graphql/persisted_documents/configuration.rb
Defined Under Namespace
Classes: Configuration, Persister, Rack
Constant Summary collapse
- VERSION =
"0.1.0"
Class Attribute Summary collapse
-
.configuration ⇒ Object
Returns the value of attribute configuration.
Class Method Summary collapse
Class Attribute Details
.configuration ⇒ Object
Returns the value of attribute configuration.
13 14 15 |
# File 'lib/graphql/persisted_documents.rb', line 13 def configuration @configuration end |
Class Method Details
.configure {|configuration| ... } ⇒ Object
15 16 17 18 |
# File 'lib/graphql/persisted_documents.rb', line 15 def configure @configuration ||= Configuration.new yield(configuration) if block_given? end |