docs-devsite/database.databasereference.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 %}
A DatabaseReference represents a specific location in your Database and can be used for reading or writing data to that Database location.
You can reference the root or child location in your Database by calling ref() or ref("child/path")<!-- -->.
Writing is done with the set() method and reading can be done with the on*() method. See https://firebase.google.com/docs/database/web/read-and-write
<b>Signature:</b>
export declare interface DatabaseReference extends Query
<b>Extends:</b> Query
| Property | Type | Description |
|---|---|---|
| key | string | null | The last part of the <code>DatabaseReference</code>'s path.<!-- -->For example, <code>"ada"</code> is the key for <code>https://<DATABASE_NAME>.firebaseio.com/users/ada</code>.<!-- -->The key of a root <code>DatabaseReference</code> is <code>null</code>. |
| parent | DatabaseReference | null | The parent location of a <code>DatabaseReference</code>.<!-- -->The parent of a root <code>DatabaseReference</code> is <code>null</code>. |
| root | DatabaseReference | The root <code>DatabaseReference</code> of the Database. |
The last part of the DatabaseReference<!-- -->'s path.
For example, "ada" is the key for https://<DATABASE_NAME>.firebaseio.com/users/ada<!-- -->.
The key of a root DatabaseReference is null<!-- -->.
<b>Signature:</b>
readonly key: string | null;
The parent location of a DatabaseReference<!-- -->.
The parent of a root DatabaseReference is null<!-- -->.
<b>Signature:</b>
readonly parent: DatabaseReference | null;
The root DatabaseReference of the Database.
<b>Signature:</b>
readonly root: DatabaseReference;