react-code-dataset
/
WhatsApp-Clone-Client-React
/src
/graphql
/subscriptions
/chatAdded.subscription.ts
| import gql from 'graphql-tag'; | |
| import * as fragments from '../fragments'; | |
| export default gql` | |
| subscription ChatAdded { | |
| chatAdded { | |
| ...Chat | |
| } | |
| } | |
| ${fragments.chat} | |
| `; | |