type GetFieldValueFn<TFormData> = <TDeepKeys>(DeepKeys) => DeepValue<TFormData, TDeepKeys>;Defined in: FormApi/FormApiFieldMethods.types.public.ts:47
Reads the current value at a field path.
This is a read-only operation and does not create a FieldApi for the path.
TFormData
Library-managed. Do not specify explicitly.
TDeepKeys extends DeepKeys<TFormData>
Library-managed. Do not specify explicitly.
TDeepKeys
The field path to read.
DeepValue<TFormData, TDeepKeys>
The current value at the path, or undefined when the path cannot be resolved at runtime.
const name = formApi.getFieldValue('profile.name')