Back to Firebase Js Sdk

FieldPath class

docs-devsite/firestore_lite.fieldpath.md

12.12.12.1 KB
Original Source

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 %}

FieldPath class

A FieldPath refers to a field in a document. The path may consist of a single field name (referring to a top-level field in the document), or a list of field names (referring to a nested field in the document).

Create a FieldPath by providing field names. If more than one field name is provided, the path will point to a nested field in a document.

<b>Signature:</b>

typescript
export declare class FieldPath 

Constructors

ConstructorModifiersDescription
(constructor)(fieldNames)Creates a <code>FieldPath</code> from the provided field names. If more than one field name is provided, the path will point to a nested field in a document.

Methods

MethodModifiersDescription
isEqual(other)Returns true if this <code>FieldPath</code> is equal to the provided one.

FieldPath.(constructor)

Creates a FieldPath from the provided field names. If more than one field name is provided, the path will point to a nested field in a document.

<b>Signature:</b>

typescript
constructor(...fieldNames: string[]);

Parameters

ParameterTypeDescription
fieldNamesstring[]A list of field names.

FieldPath.isEqual()

Returns true if this FieldPath is equal to the provided one.

<b>Signature:</b>

typescript
isEqual(other: FieldPath): boolean;

Parameters

ParameterTypeDescription
otherFieldPathThe <code>FieldPath</code> to compare against.

<b>Returns:</b>

boolean

true if this FieldPath is equal to the provided one.