Interface GoogleFirebaseRealtimeDatabaseNodeParameters

Source
interface GoogleFirebaseRealtimeDatabaseNodeParameters {
    attributes?: string;
    operation?:
        | "create"
        | "get"
        | "update"
        | "delete"
        | "push";
    path?: string;
    projectId?: string;
}

Properties§

Source§

readonly attributes?: string

Attributes to save

Source§

readonly operation?: "create" | "get" | "update" | "delete" | "push"

Default: "create"

Source§

readonly path?: string

Object path on database. Do not append .json.

Source§

readonly projectId?: string

As displayed in firebase console URL. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getProjects"}