查询变量

在 GraphQL 上下文中什么是变量?

GraphQL 使用一流的方法来将动态值从查询中剔除,并将它们作为单独的字典进行传递。这些值被称为变量。 在我们的案例中,我们是把要插入的对象定义为变更。

因此,让我们定义要使用的 graphql 变更。

打开src/components/Todo/TodoInput.js并添加以下代码:

githubsrc/components/Todo/TodoInput.js
import React from 'react';
+ import { gql } from "@apollo/client";
+ const ADD_TODO = gql `
+ mutation ($todo: String!, $isPublic: Boolean!) {
+ insert_todos(objects: {title: $todo, is_public: $isPublic}) {
+ affected_rows
+ returning {
+ id
+ title
+ created_at
+ is_completed
+ }
+ }
+ }
+ `;
const TodoInput = ({isPublic=false}) => {
return (
<form className="formInput" onSubmit={(e) => {
e.preventDefault();
}}>
<input
className="input"
placeholder="What needs to be done?"
/>
<i className="inputMarker fa fa-angle-right" />
</form>
);
};
export default TodoInput;

这个变更有什么作用?

变更插入到todos表中,而 $objects 变量作为一个待办事项类型传递。

太棒了!我们已经定义了我们的第一个 graphql 变更。

Did you find this page helpful?
Start with GraphQL on Hasura for Free
  • ArrowBuild apps and APIs 10x faster
  • ArrowBuilt-in authorization and caching
  • Arrow8x more performant than hand-rolled APIs
Promo
footer illustration
Brand logo
© 2024 Hasura Inc. All rights reserved
Github
Titter
Discord
Facebook
Instagram
Youtube
Linkedin