mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 00:17:18 +00:00
* Add multiple fields for order and orderType in firestore query * Add support for querying firestore with where, order and limit * Minor refactoring updates for firestore query operations file * Minor refactoring for firestore query operations * Update package-lock.json with npm 7.20.0
37 lines
549 B
JavaScript
37 lines
549 B
JavaScript
export const defaultOptions = {
|
|
postgresql: {
|
|
mode: 'sql',
|
|
},
|
|
redis: {
|
|
query: 'PING',
|
|
},
|
|
mysql: {},
|
|
graphql: {},
|
|
firestore: {
|
|
path: '',
|
|
operation: 'get_document',
|
|
order_type: 'desc',
|
|
},
|
|
elasticsearch: {
|
|
query: '',
|
|
operation: 'search',
|
|
},
|
|
restapi: {
|
|
method: 'get',
|
|
url: null,
|
|
url_params: [],
|
|
headers: [],
|
|
body: [],
|
|
},
|
|
stripe: {},
|
|
mongodb: {
|
|
document: '{ }',
|
|
},
|
|
googlesheets: {
|
|
operation: 'read',
|
|
},
|
|
slack: {},
|
|
dynamodb: {},
|
|
airtable: {},
|
|
mssql: {},
|
|
};
|