1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

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

This commit is contained in:
mike12345567 2021-02-24 16:55:06 +00:00
parent c99676239d
commit 43cb9878cf

View file

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