问题:如何将 GraphQL 查询保存到我的本地/postgres 数据库?
(假设我只想保存一两个字段——我会做更多,但我只是不知道如何开始。)
背景:
我有一个嵌入式 shopify 应用程序,它与 webhook 一起使用来消费订单。我运行一项工作,数据完美地存储在我的数据库中。
我已经设置了一个超级简单的应用程序,可以在模型中进行 graphql 查询。我已经设置好了,所以我可以在视图中看到 json 对象。但我不是 100% 清楚我如何从 graphql api 查询 -> 响应(在模型中 - 至少现在) -> 将数据属性保存到我的数据库
我正在将此作为新应用程序进行测试。所以,我没有拆分模型/控制器等,暂时只使用一个模型
我想我只是有点失落。我需要经营一份工作吗?或者这是我可以在控制器(或模型)中做的事情。
模型
商店.rb
class Shop < ActiveRecord::Base
include ShopifyApp::ShopSessionStorage
has_many :orders
def api_version
ShopifyApp.configuration.api_version
end
session = ShopifyAPI::Session.new(domain: "bryanbeshore.myshopify.com", token: Shop.first.shopify_token, api_version: "2020-04")
ShopifyAPI::Base.activate_session(session)
client = ShopifyAPI::GraphQL.client
SHOP_NAME_QUERY = client.parse <<-'GRAPHQL'
{
shop {
name
}
orders(first: 100) {
edges {
node {
id
name
createdAt
shippingAddress {
address1
address2
city
province
provinceCode
zip
}
}
}
}
}
GRAPHQL
end
控制器
home_controller.rb
class HomeController < AuthenticatedController
def index
client = ShopifyAPI::GraphQL.client
@shop_orders = client.query(Shop::SHOP_NAME_QUERY).data.to_json
end
end
看法
应用程序/views/home/index.html.erb
<p><%= @shop_orders %></p>
当前架构
ActiveRecord::Schema.define(version: 2020_05_06_181457) do
create_table "orders", force: :cascade do |t|
t.string "shopify_order_id", null: false
t.string "shopify_order_name", default: ""
t.datetime "shopify_order_created_at"
t.integer "shop_id"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["shop_id"], name: "index_orders_on_shop_id"
t.index ["shopify_order_id"], name: "index_orders_on_shopify_order_id", unique: true
end
create_table "shops", force: :cascade do |t|
t.string "shopify_domain", null: false
t.string "shopify_token", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["shopify_domain"], name: "index_shops_on_shopify_domain", unique: true
end
end