react-relay.js 403 B

123456789101112131415161718
  1. const { graphql } = require("react-relay");
  2. graphql`
  3. mutation MarkReadNotificationMutation(
  4. $input
  5. : MarkReadNotificationData!
  6. )
  7. { markReadNotification(data: $input ) { notification {seenState} } }
  8. `;
  9. graphql.experimental`
  10. mutation MarkReadNotificationMutation(
  11. $input
  12. : MarkReadNotificationData!
  13. )
  14. { markReadNotification(data: $input ) { notification {seenState} } }
  15. `;