Skip to content

Instantly share code, notes, and snippets.

@SebastianBoldt
Last active February 3, 2022 09:48
Show Gist options
  • Save SebastianBoldt/91cb48aeb827cb851b69ac3a730dcae2 to your computer and use it in GitHub Desktop.
Save SebastianBoldt/91cb48aeb827cb851b69ac3a730dcae2 to your computer and use it in GitHub Desktop.
func getUserData(for id: Int) async throws -> Family {
let user = try await getUser(id: id)
let parents = try await getParents(of: user)
return createFamily(user, parent)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment