docs-devsite/firestore_lite_pipelines.field.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Represents a reference to a field in a Firestore document, or outputs of a Pipeline stage.
<p>Field references are used to access document field values in expressions and to specify fields for sorting, filtering, and projecting data in Firestore pipelines. <p>You can create a `Field` instance using the static method:<b>Signature:</b>
export declare class Field extends Expression implements Selectable
<b>Extends:</b> Expression
<b>Implements:</b> Selectable
| Property | Modifiers | Type | Description |
|---|---|---|---|
| alias | string | ||
| expr | Expression | ||
| expressionType | ExpressionType | ||
| fieldName | string | ||
| selectable | true |
| Method | Modifiers | Description |
|---|---|---|
| geoDistance(location) | <b><i>(Public Preview)</i></b> Evaluates to the distance in meters between the location specified by this field and the query location. |
<b>Signature:</b>
get alias(): string;
<b>Signature:</b>
get expr(): Expression;
<b>Signature:</b>
readonly expressionType: ExpressionType;
<b>Signature:</b>
get fieldName(): string;
<b>Signature:</b>
selectable: true;
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Evaluates to the distance in meters between the location specified by this field and the query location.
This Expression can only be used within a Search stage.
<b>Signature:</b>
geoDistance(location: GeoPoint | Expression): Expression;
| Parameter | Type | Description |
|---|---|---|
| location | GeoPoint | Expression | Compute distance to this GeoPoint. |
<b>Returns:</b>
// Create a Field instance for the 'name' field
const nameField = field("name");
// Create a Field instance for a nested field 'address.city'
const cityField = field("address.city");