ToolJet/frontend/src/Editor/QueryManager/constants.js
Sherfin Shamsudeen 3ca60c5b2d
Bugfix/firestore query conditions (#813)
* 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
2021-09-22 00:19:29 +05:30

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: {},
};