budibase/packages/client/src/api/queries.js

27 lines
758 B
JavaScript
Raw Normal View History

import { notificationStore, dataSourceStore } from "../store"
2020-12-30 13:58:39 +01:00
import API from "./api"
/**
* Executes a query against an external data connector.
*/
export const executeQuery = async ({ queryId, parameters }) => {
const query = await API.get({ url: `/api/queries/${queryId}` })
if (query?.datasourceId == null) {
notificationStore.danger("That query couldn't be found")
return
}
2021-01-25 12:57:04 +01:00
const res = await API.post({
url: `/api/queries/${queryId}`,
body: {
2021-01-08 19:22:03 +01:00
parameters,
},
})
if (res.error) {
notificationStore.danger("An error has occurred")
} else if (!query.readable) {
notificationStore.success("Query executed successfully")
dataSourceStore.actions.invalidateDataSource(query.datasourceId)
}
2021-01-25 13:36:35 +01:00
return res
}