aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/schema/types/send-email.types.ts
blob: 58895720fbae7ac375f6e8dc8979bdd452142c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const sendEmailTypes = `input SendEmailInput {
  body: String
  clientMutationId: String
  from: String
  replyTo: String
  subject: String
  to: String
}

type SendEmailPayload {
  clientMutationId: String
  message: String
  origin: String
  replyTo: String
  sent: Boolean
  to: String
}`;