Hi,
As the ‘change field’ and ‘calculated field’ are getting deprecated on June 17.
I am trying to build a CRUD app for master data. and I am facing a challenge on step 5 mentioned in the below document
Step 5:
import { CL } from ‘demo.app’ //
I am trying to do this for ‘CL’ entity and I an getting error as below
Module ‘“demo.app”’ has no exported member ‘CL’
When I open the demo.app file inside node modules , I see the below code
export {}
export * from ‘./graphql/__types_entrypoint’
export * from ‘./react/__types_entrypoint’
Can someone tell me what am I doing wrong here.
Thanks!