123456789101112131415161718 |
- 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} } }
- `;
|