1
0
Fork 0
mirror of synced 2024-09-12 23:43:09 +12:00
budibase/packages/builder/src/components/integration/Query.js
2021-01-07 13:13:46 +00:00

9 lines
153 B
JavaScript

class Query {
constructor(source, schema, type) {
this.source = source
this.schema = schema
this.type = type
}
build(parameters) {}
}