简体   繁体   English

如何在graphiql-rails gem中启用header_editor_enable?

[英]How to enable header_editor_enable in graphiql-rails gem?

How can i set header_editor_enable as true in graphiql-rails gem?如何设置header_editor_enabletrue的graphiql护栏宝石? There is no graphiql config file in my project.我的项目中没有 graphiql 配置文件。 So, I've created it in config/initializers/graphiql.rb but I don't know how to set it true.所以,我在config/initializers/graphiql.rb创建了它,但我不知道如何将其设置为 true。

How can I do it?我该怎么做?

The change with header_editor_enable is not released yet as of 02.12.2021. header_editor_enable日, header_editor_enable的更改尚未发布。 What you can do is change your Gemfile to point to the latest master of the gem你可以做的是改变你的 Gemfile 以指向 gem 的最新主人

# Gemfile
gem "graphiql-rails", git: "https://github.com/rmosolgo/graphiql-rails.git", branch: "master"

Then in your initializer, add header_editor_enabled option as然后在您的初始化程序中,将header_editor_enabled选项添加为

# config/initializers/graphiql.rb
GraphiQL::Rails.config.header_editor_enabled = true

You are good to go你已准备好出发

screen_shot_of_editor_with_header_section

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM