---
title: "resolved(from:)"
framework: appintentstesting
role: symbol
role_heading: Instance Method
path: "appintentstesting/appentitydefinition/resolved(from:)-7c04a"
---

# resolved(from:)

Resolves an entity from a transferable intent value type through the entity type’s transferable conformance.

## Declaration

```swift
func resolved<T>(from value: T) async throws -> AnyAppEntity where T : IntentValueConvertible, T : Transferable
```

## Parameters

- `value`: The transferable intent value (e.g., an IntentPerson instance).

## Return Value

Return Value The resolved entity.

## Discussion

Discussion The value is serialized through its TransferRepresentation and resolved into the entity type through the same pipeline used at runtime. note: If the entity type does not support the given value type. let person = try await entity.exported(as: IntentPerson.self) let resolved = try await personEntityDef.resolved(from: person)
