Sha256: 4cc7f406e9356e361f21dc4ed1a89ca5a7d795a283118e7e1be73cc1ce97d404

Contents?: true

Size: 468 Bytes

Versions: 6

Compression:

Stored size: 468 Bytes

Contents

# frozen_string_literal: true

module Rails
  module GraphQL
    module Subscription
      # = GraphQL Subscription Store
      #
      # Subscription store holds all the possible options for storing the
      # subscriptions, allowing to segmentation by field, variables, and several
      # other things according to the necessity
      module Store
        extend ActiveSupport::Autoload

        autoload :Base
        autoload :Memory
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rails-graphql-1.0.2 lib/rails/graphql/subscription/store.rb
rails-graphql-1.0.1 lib/rails/graphql/subscription/store.rb
rails-graphql-1.0.0 lib/rails/graphql/subscription/store.rb
rails-graphql-1.0.0.rc2 lib/rails/graphql/subscription/store.rb
rails-graphql-1.0.0.rc1 lib/rails/graphql/subscription/store.rb
rails-graphql-1.0.0.beta lib/rails/graphql/subscription/store.rb