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