Browse Source

Fixing an issue where the table that a view was attached to was not being retrieved correctly, inhibiting the ability to enrich with relationships.

pull/4023/head
mike12345567 5 years ago
parent
commit
d16015587f
  1. 7
      packages/server/src/api/controllers/row.js

7
packages/server/src/api/controllers/row.js

@ -202,6 +202,11 @@ exports.fetchView = async function(ctx) {
const db = new CouchDB(appId)
const { calculation, group, field } = ctx.query
const designDoc = await db.get("_design/database")
const viewInfo = designDoc.views[viewName]
if (!viewInfo) {
ctx.throw(400, "View does not exist.")
}
const response = await db.query(`database/${viewName}`, {
include_docs: !calculation,
group,
@ -211,7 +216,7 @@ exports.fetchView = async function(ctx) {
response.rows = response.rows.map(row => row.doc)
let table
try {
table = await db.get(ctx.params.tableId)
table = await db.get(viewInfo.meta.tableId)
} catch (err) {
table = {
schema: {},

Loading…
Cancel
Save