Skip to content
Snippets Groups Projects
eventRegistrationMutation.graphql 212 B
mutation sendEventRegistration(
  $event: ID!
  $eventRegistration: EventRegistrationInputType!
) {
  sendEventRegistration(event: $event, eventRegistration: $eventRegistration) {
    ok
    doPaymentToken
  }
}