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