prettier/tests/multiparser_js_graphql/react-relay.js

18 lines
403 B
JavaScript

const { graphql } = require("react-relay");
graphql`
mutation MarkReadNotificationMutation(
$input
: MarkReadNotificationData!
)
{ markReadNotification(data: $input ) { notification {seenState} } }
`;
graphql.experimental`
mutation MarkReadNotificationMutation(
$input
: MarkReadNotificationData!
)
{ markReadNotification(data: $input ) { notification {seenState} } }
`;