1
私は次のクエリなぜapolloは更新を保存しないのですか?
const ITEM_COMMENTS_QUERY = gql`
query Search($id: UUID, $per_page: Int) {
item(id: $id) {
id
comments(page: 1, per_page: $per_page) {
edges {
id
author {
id
first_name
last_name
}
content
}
total_count
}
}
}
`;
と、次の突然変異
const CREATE_COMMENT_MUTATION = gql`
mutation create_comment($id: UUID!, $content: String!) {
create_comment(id: $id, content: $content, type: COMMENT_TYPE_ITEM) {
id
... on ItemComment {
item {
id
comments(page: 1, per_page: 100) {
edges {
id
author {
id
first_name
last_name
}
content
}
}
}
}
}
}
`;
を持っており、応答が正しいですが、アポロストアが更新されません。 (私が持っているdataIdFromObject:elm => elm.id
)を