We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update
Reference: From basic react https://github.com/graphql-boilerplates/react-fullstack-graphql/tree/master/basic
The text was updated successfully, but these errors were encountered:
This appear to already beeing done:
import React, { Component } from 'react' import { withRouter } from 'react-router-dom' import { Mutation } from 'react-apollo' import gql from 'graphql-tag' import { DRAFTS_QUERY } from './DraftsPage' class CreatePage extends Component { state = { title: '', text: '', } render() { return ( <Mutation mutation={CREATE_DRAFT_MUTATION} update={(cache, { data }) => { const { drafts } = cache.readQuery({ query: DRAFTS_QUERY }) cache.writeQuery({ query: DRAFTS_QUERY, data: { drafts: drafts.concat([data.createDraft]) }, }) }} > {(createDraft, { data, loading, error }) => { return ( <div className="pa4 flex justify-center bg-white"> <form onSubmit={async e => { e.preventDefault() const { title, text } = this.state await createDraft({ variables: { title, text }, }) this.props.history.replace('/drafts') }} > <h1>Create Draft</h1> <input autoFocus className="w-100 pa2 mv2 br2 b--black-20 bw1" onChange={e => this.setState({ title: e.target.value })} placeholder="Title" type="text" value={this.state.title} /> <textarea className="db w-100 ba bw1 b--black-20 pa2 br2 mb2" cols={50} onChange={e => this.setState({ text: e.target.value })} placeholder="Content" rows={8} value={this.state.text} /> <input className={`pa3 bg-black-10 bn ${this.state.text && this.state.title && 'dim pointer'}`} disabled={!this.state.text || !this.state.title} type="submit" value="Create" /> <a className="f6 pointer" onClick={this.props.history.goBack}> or cancel </a> </form> </div> ) }} </Mutation> ) } } const CREATE_DRAFT_MUTATION = gql` mutation CreateDraftMutation($title: String!, $text: String!) { createDraft(title: $title, text: $text) { id title text } } ` export default withRouter(CreatePage)
Sorry, something went wrong.
No branches or pull requests
Reference:
From basic react
https://github.com/graphql-boilerplates/react-fullstack-graphql/tree/master/basic
The text was updated successfully, but these errors were encountered: