Creating a new post based on https://community.forestadmin.com/t/issue-with-relationships-not-showing-in-a-database-and-cannot-be-configured-web-interface/7642/9?u=mderriey-makerx.
Feature(s) impacted
The ability to use an admin user in local dev for smart relationships to be discovered and persisted into the .forestadmin-schema.json
file, while the deployed version uses a user that can’t introspect the schema.
Observed behavior
For tables that have relationships, the dashboard shows the following. Tables without relationships work fine.
Expected behavior
Table that have relationships show data based on the JSON schema.
Failure Logs
warning: [400] GET /personal_wallet - 326ms
===== An exception was raised =====
GET /personal_wallet?{
timezone: Europe/Paris,
fields[personal_wallet]: address,created_date,external_id,id,updated_date,user,
fields[user]: Name,
page[number]: 1,
page[size]: 15,
sort: -id
}
Invalid projection: The 'personal_wallet.user' field was not found. Available fields are: [id,created_date,updated_date,user_id,external_id,address]. Please check if the field name is correct.
Context
I could reproduce this locally.
The starting point is a working dashboard, where the JSON schema doesn’t contain relationships as it’s using the Forest Admin database user that doesn’t have permissions.
Actions:
- Update the database user to be the admin user.
- Restart the app.
At this stage, the typings and JSON schema files are updated.
Refreshing the Forest Admin dashboard shows all the tables with smart relationships working as expected.
Actions:
- Stop the app.
- Update the agent configuration with
skipSchemaUpdate: true
. - Update the database user to be the Forest Admin specific user.
- Start the app.
The logs show the following as expected:
warning: Schema update was skipped (caused by options.skipSchemaUpdate=true)
However, navigating to a collection that has relations shows the error page above, and the log output contains the block pasted above.
- Project name: mderriey-moja
- Team name: Operations
- Environment name: Development
- Agent technology: Node.js
- Agent (forest package) name & version: @forestadmin/agent v1.60.1
- Database type: Postgres
- Recent changes made on your end if any: None