Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个名为 featuresImage 的字段。
例如,如果我开始输入“id”,它将使用自动完成将其显示为可用的子字段。
但是,如果您不知道子字段是什么怎么办?
{ featuredImage { // What fields are available? } }
您如何使用 GraphQL 显示可用的子字段?
通过执行'ctrl + space'尝试键盘快捷键,它应该会显示所有选项,在许多文本编辑器中类似。
{ featuredImage { /* ctrl + space */ /* displays options */ } }