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