因此,我希望在GraphCool中创建一个GraphQL突变,它将整数字段的现有值递增预定量,作为变量传入。例如:
mutation updateLikes ($id: ID!, $count: Int) {
updatePosts (id: $id, likes: incrementBy $count) {
id
likes
}
}
Query variable
{
"id" : "cj0qkl04vep8k0177tky596og",
"count": 1
}
我该怎么做?
另外,我试图从onClick事件触发上面提到的进程,但是我得到一个'无法读取属性'的'null'错误消息',我怀疑这个.props.client.query:
Photo.js
import React from 'react';
import Comments from './Comments';
import CSSTransitionGroup from 'react-addons-css-transition-group';
import { Link } from 'react-router';
import {
gql,
graphql,
withApollo
} from 'react-apollo';
import ApolloClient from 'apollo-client';
class Photo extends React.Component {
incrementQuery(currentID) {
console.log("like of id=" + currentID+ " has been incremented by 1");
this.props.client.query({
query: gql`
mutation updatePosts($id: ID!) {
updatePosts (id: $id, likes: 1) {
id
likes
}
}
`,
variables: {
id: currentID,
},
});
}
render() {
const { post, i } = this.props;
return (
<figure key={i} className="grid-figure">
<div className='grid-photo-wrap'>
<Link to={`/view/${post.id}`}>
<img className='grid-photo' src={post.displaysrc} alt={post.caption} />
</Link>
<CSSTransitionGroup transitionName="like" transitionEnterTimeout={500} transitionLeaveTimeout={500}>
<span key={post.likes} className="likes-heart">{post.likes}</span>
</CSSTransitionGroup>
</div>
<figcaption>
<p>{post.caption}</p>
<div className="control-buttons">
<button onClick={this.incrementQuery.bind(null,i)} className="likes">♥ {post.likes}</button>
<Link to={`/view/${post.id}`} className="button">
<span className="comment-count">
<span className="speech-bubble"></span> {(post.comments ? Object.keys(post.comments).length : 0)}
</span>
</Link>
</div>
</figcaption>
</figure>
)
}
};
Photo.PropTypes = {
client: React.PropTypes.instanceOf(ApolloClient).isRequired,
query: React.PropTypes.object,
variables: React.PropTypes.object,
data: React.PropTypes.shape({
loading: React.PropTypes.bool.isRequired,
error: React.PropTypes.bool.isRequired,
updatePosts: React.PropTypes.object,
}).isRequired,
}
const PhotoWithApollo = withApollo(Photo);
export default PhotoWithApollo;
抛出的错误如下:
Uncaught TypeError: Cannot read property 'props' of null
at incrementQuery (http://localhost:7770/static/bundle.js:56347:12)
at proxiedMethod (http://localhost:7770/static/bundle.js:54898:31)
at HTMLUnknownElement.wrapped (http://localhost:7770/static/bundle.js:47347:30)
at Object.ReactErrorUtils.invokeGuardedCallback (http://localhost:7770/static/bundle.js:6346:17)
at executeDispatch (http://localhost:7770/static/bundle.js:6146:22)
at Object.executeDispatchesInOrder (http://localhost:7770/static/bundle.js:6169:6)
at executeDispatchesAndRelease (http://localhost:7770/static/bundle.js:5599:23)
at executeDispatchesAndReleaseTopLevel (http://localhost:7770/static/bundle.js:5610:11)
at Array.forEach (native)
at forEachAccumulated (http://localhost:7770/static/bundle.js:6446:10)
at Object.processEventQueue (http://localhost:7770/static/bundle.js:5815:8)
at runEventQueueInBatch (http://localhost:7770/static/bundle.js:6475:19)
at Object.handleTopLevel [as _handleTopLevel] (http://localhost:7770/static/bundle.js:6491:6)
at handleTopLevelWithoutPath (http://localhost:7770/static/bundle.js:16697:25)
at handleTopLevelImpl (http://localhost:7770/static/bundle.js:16677:4)
at ReactDefaultBatchingStrategyTransaction.perform (http://localhost:7770/static/bundle.js:8643:21)
at Object.batchedUpdates (http://localhost:7770/static/bundle.js:12680:20)
at Object.batchedUpdates (http://localhost:7770/static/bundle.js:8148:21)
at dispatchEvent (http://localhost:7770/static/bundle.js:16808:21)
at HTMLDocument.wrapped (http://localhost:7770/static/bundle.js:47347:30)
答案 0 :(得分:3)
目前您需要先查询值:
query Post($id: ID!) {
Post (id: $id) {
id
likes
}
}
然后增加likes
客户端并使用likes
的新值更新帖子:
mutation updateLikes ($id: ID!, $likes: Int!) {
updatePost (id: $id, likes: $likes) {
id
likes
}
}
使用特殊数字增加喜欢的内容是custom mutation的一个很好的用例,我们一直在努力。
答案 1 :(得分:0)
是。这是一个非常有趣的问题。实际上,Apollo客户端使用相同的方法来处理分页。您必须获取当前页面,当您转到页面底部时,(上一页+ 1 )=&gt;(下一页)成为新页面变量以获取下一页页面内容,然后连接到prev页面。不喜欢/喜欢,同样的方式,只有差异不需要连接到prev dike / like。代替它。