2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-19 20:55:45 +01:00
|
|
|
GraphQL::RailsLogger.configure do |config|
|
|
|
|
config.white_list = {
|
|
|
|
'API::V2::GraphqlController' => ['execute']
|
|
|
|
}
|
|
|
|
end
|
2023-07-27 12:19:07 +02:00
|
|
|
|
|
|
|
module GraphQL
|
|
|
|
class Schema
|
|
|
|
class Member
|
|
|
|
module BuildType
|
|
|
|
def self.camelize(string)
|
|
|
|
string.camelize(:lower)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|