pubsweet-component-wax
Version:
PubSweet component for the Wax collaborative document editor
26 lines (21 loc) • 609 B
JavaScript
import React from 'react'
import { Mutation } from '@apollo/react-components'
import gql from 'graphql-tag'
const UNLOCK_BOOK_COMPONENT = gql`
mutation UnlockBookComponent($input: UpdateBookComponentInput!) {
unlockBookComponent(input: $input) {
id
}
}
`
const unlockBookComponentMutation = props => {
const { render } = props
return (
<Mutation mutation={UNLOCK_BOOK_COMPONENT}>
{(unlockBookComponent, unlockBookComponentResult) =>
render({ unlockBookComponent, unlockBookComponentResult })
}
</Mutation>
)
}
export default unlockBookComponentMutation