summaryrefslogtreecommitdiff
path: root/app/helpers/startupjs_helper.rb
blob: b595590c7c9f1e07d1affc06e9746e554ccc65aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module StartupjsHelper
  def page_startup_graphql_calls
    @graphql_startup_calls
  end

  def add_page_startup_graphql_call(query, variables = {})
    @graphql_startup_calls ||= []
    file_location = File.join(Rails.root, "app/graphql/queries/#{query}.query.graphql")

    return unless File.exist?(file_location)

    query_str = File.read(file_location)
    @graphql_startup_calls << { query: query_str, variables: variables }
  end
end