Sha256: 29e6134b22375995d67b430087d3366004dc0b4bac07bab85849deac2b2008ea

Contents?: true

Size: 1.08 KB

Versions: 45

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true
require "base64"

module GraphQL
  class Schema
    module UniqueWithinType
      class << self
        attr_accessor :default_id_separator
      end
      self.default_id_separator = "-"

      module_function

      # @param type_name [String]
      # @param object_value [Any]
      # @return [String] a unique, opaque ID generated as a function of the two inputs
      def encode(type_name, object_value, separator: self.default_id_separator)
        object_value_str = object_value.to_s

        if type_name.include?(separator)
          raise "encode(#{type_name}, #{object_value_str}) contains reserved characters `#{separator}` in the type name"
        end

        Base64.strict_encode64([type_name, object_value_str].join(separator))
      end

      # @param node_id [String] A unique ID generated by {.encode}
      # @return [Array<(String, String)>] The type name & value passed to {.encode}
      def decode(node_id, separator: self.default_id_separator)
        GraphQL::Schema::Base64Encoder.decode(node_id).split(separator, 2)
      end
    end
  end
end

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
graphql-2.4.14 lib/graphql/schema/unique_within_type.rb
graphql-2.3.22 lib/graphql/schema/unique_within_type.rb
graphql-2.2.17 lib/graphql/schema/unique_within_type.rb
graphql-2.3.21 lib/graphql/schema/unique_within_type.rb
graphql-2.4.13 lib/graphql/schema/unique_within_type.rb
graphql-2.4.12 lib/graphql/schema/unique_within_type.rb
graphql-2.4.11 lib/graphql/schema/unique_within_type.rb
graphql-2.4.10 lib/graphql/schema/unique_within_type.rb
graphql-2.4.9 lib/graphql/schema/unique_within_type.rb
graphql-2.4.8 lib/graphql/schema/unique_within_type.rb
graphql-2.4.7 lib/graphql/schema/unique_within_type.rb
graphql-2.4.6 lib/graphql/schema/unique_within_type.rb
graphql-2.4.5 lib/graphql/schema/unique_within_type.rb
graphql-2.4.4 lib/graphql/schema/unique_within_type.rb
graphql-2.4.3 lib/graphql/schema/unique_within_type.rb
graphql-2.4.2 lib/graphql/schema/unique_within_type.rb
graphql-2.4.1 lib/graphql/schema/unique_within_type.rb
graphql-2.4.0 lib/graphql/schema/unique_within_type.rb
graphql-2.3.20 lib/graphql/schema/unique_within_type.rb
graphql-2.3.19 lib/graphql/schema/unique_within_type.rb