File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
server/node-service/src/plugins/firebase Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const dataSourceConfig = {
25
25
label : "Private Key" ,
26
26
type : "password" ,
27
27
tooltip :
28
- "The [document](https://firebase.google.com/docs/admin/setup) on how to obtain the private key." ,
28
+ "The JSON [document](https://firebase.google.com/docs/admin/setup) on how to obtain the private key." ,
29
29
} ,
30
30
{
31
31
label : "Spec Version" ,
Original file line number Diff line number Diff line change @@ -108,6 +108,30 @@ const queryConfig = {
108
108
type : "numberInput" ,
109
109
defaultValue : 10 ,
110
110
} ,
111
+ {
112
+ key : "startAt" ,
113
+ label : "Start at" ,
114
+ type : "textInput" ,
115
+ tooltip : "Start the query at a specific document." ,
116
+ } ,
117
+ {
118
+ key : "endAt" ,
119
+ label : "End at" ,
120
+ type : "textInput" ,
121
+ tooltip : "End the query at a specific document." ,
122
+ } ,
123
+ {
124
+ key : "startAfter" ,
125
+ label : "Start after" ,
126
+ type : "textInput" ,
127
+ tooltip : "Start the query after a specific document." ,
128
+ } ,
129
+ {
130
+ key : "endBefore" ,
131
+ label : "End before" ,
132
+ type : "textInput" ,
133
+ tooltip : "End the query before a specific document." ,
134
+ }
111
135
] ,
112
136
} ,
113
137
{
You can’t perform that action at this time.
0 commit comments