fix: check if fields exists

This commit is contained in:
Hwansoo 2022-02-01 00:03:25 +09:00
parent 5b567300ec
commit 0e94950857
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ export default class QueryFetch extends DataFetch {
}
const definition = await fetchQueryDefinition(datasource._id)
// After getting the definition of query, it loses "fields" attribute because of security reason from the server. However, this attribute needs to be inside of defintion for pagination.
if (!definition.fields) {
definition.fields = datasource.fields
}
return definition
}