Exemplo n.º 1
0
 public async Task <RestaurantType> AddRestaurant([Parent] Mutation mutation, string name)
 {
     return(await mutation.AddRestaurant(name));
 }
Exemplo n.º 2
0
 public async Task <TableType> AddTable([Parent] Mutation mutation, AddTableInput input)
 {
     return(await mutation.AddTable(input));
 }