亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Ruby中使用GraphQL

發布時間:2024-04-19 15:09:23 來源:億速云 閱讀:52 作者:小樊 欄目:編程語言

在Ruby中使用GraphQL,可以使用graphql-ruby gem來實現。首先需要安裝gem:

gem 'graphql', '~> 1.9'

然后在終端運行bundle install來安裝gem。

接下來,創建GraphQL schema并定義查詢和mutation:

# app/graphql/types/query_type.rb
Types::QueryType = GraphQL::ObjectType.define do
  name "Query"

  field :all_users, !types[Types::UserType] do
    resolve -> (obj, args, ctx) { User.all }
  end
end

# app/graphql/types/mutation_type.rb
Types::MutationType = GraphQL::ObjectType.define do
  name "Mutation"

  field :create_user, Types::UserType do
    argument :name, !types.String
    argument :email, !types.String

    resolve -> (obj, args, ctx) { User.create(name: args[:name], email: args[:email]) }
  end
end

# app/graphql/types/user_type.rb
Types::UserType = GraphQL::ObjectType.define do
  name "User"

  field :id, !types.ID
  field :name, !types.String
  field :email, !types.String
end

然后創建GraphQL schema:

# app/graphql/schema.rb
Schema = GraphQL::Schema.define do
  query Types::QueryType
  mutation Types::MutationType
end

最后,將GraphQL endpoint添加到Rails應用中:

# config/routes.rb
post "/graphql", to: "graphql#execute"

創建GraphQL controller:

# app/controllers/graphql_controller.rb
class GraphqlController < ApplicationController
  def execute
    result = Schema.execute(params[:query], variables: params[:variables])
    render json: result
  end
end

現在就可以通過發送GraphQL查詢和mutation來與應用程序交互了。可以使用GraphiQL等工具來測試GraphQL端點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霸州市| 都安| 诸暨市| 岳西县| 永胜县| 迁西县| 肃宁县| 彭阳县| 宕昌县| 资兴市| 岳西县| 四川省| 巴彦淖尔市| 通化市| 察隅县| 盖州市| 麻城市| 大方县| 巴彦淖尔市| 陆川县| 合阳县| 泾源县| 库尔勒市| 大城县| 藁城市| 海伦市| 辽阳县| 娱乐| 龙南县| 栖霞市| 开化县| 莎车县| 资中县| 喀什市| 都江堰市| 乐陵市| 丰镇市| 尼玛县| 龙口市| 吉林省| 浦城县|